validate User with OTP and return User
ApiScope: manage.otp.verify
API Scope Level: ServiceSubscriberScope
Header Parameters
clientIp string
application/json
Request Body required
userName string
phoneNumber string
otp string
Responses
- 200
- 400
- 401
- 403
- 500
OK
application/json
application/x-protobuf
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
user object
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string",
"user": {
"firstName": "string",
"lastName": "string",
"userName": "string",
"email": "string",
"phone": "string",
"textNumber": "string",
"nickName": "string",
"uuid": "string",
"passwordExpires": "string",
"forcePasswordChange": true,
"latestInviteStatus": "string",
"latestInviteDate": "string",
"latestInviteUUID": "string",
"isValid": true,
"lastLoginTimestamp": "string",
"userRolloutStage": "string"
}
}
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
user object
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string",
"user": {
"firstName": "string",
"lastName": "string",
"userName": "string",
"email": "string",
"phone": "string",
"textNumber": "string",
"nickName": "string",
"uuid": "string",
"passwordExpires": "string",
"forcePasswordChange": true,
"latestInviteStatus": "string",
"latestInviteDate": "string",
"latestInviteUUID": "string",
"isValid": true,
"lastLoginTimestamp": "string",
"userRolloutStage": "string"
}
}
Bad Request
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
Unauthorized
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
Forbidden
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
Internal Server Error
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
POST /v2/user/validate/otp
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/manage/v2/user/validate/otp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"userName": "string",
"phoneNumber": "string",
"otp": "string"
}'
python / requests
curl -L -X POST '/manage/v2/user/validate/otp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"userName": "string",
"phoneNumber": "string",
"otp": "string"
}'
go / native
curl -L -X POST '/manage/v2/user/validate/otp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"userName": "string",
"phoneNumber": "string",
"otp": "string"
}'
nodejs / axios
curl -L -X POST '/manage/v2/user/validate/otp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"userName": "string",
"phoneNumber": "string",
"otp": "string"
}'
ruby / Net::HTTP
curl -L -X POST '/manage/v2/user/validate/otp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"userName": "string",
"phoneNumber": "string",
"otp": "string"
}'
csharp / RestSharp
curl -L -X POST '/manage/v2/user/validate/otp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"userName": "string",
"phoneNumber": "string",
"otp": "string"
}'
php / cURL
curl -L -X POST '/manage/v2/user/validate/otp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"userName": "string",
"phoneNumber": "string",
"otp": "string"
}'
java / OkHttp
curl -L -X POST '/manage/v2/user/validate/otp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"userName": "string",
"phoneNumber": "string",
"otp": "string"
}'
powershell / RestMethod
curl -L -X POST '/manage/v2/user/validate/otp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"userName": "string",
"phoneNumber": "string",
"otp": "string"
}'