POST api/identityVerification/sendRegistrationOTP
Request Information
URI Parameters
None.
Body Parameters
BO.Identity.Requests.SendOTPRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CellNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"cellNumber": "sample string 1"
}
application/xml, text/xml
Sample:
<SendOTPRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CellNumber>sample string 1</CellNumber> </SendOTPRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.Identity.Response.SendRegistrationOtpResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.Identity.Response.SendRegistrationOtpResponse |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"requestId": "sample string 1",
"message": "sample string 2"
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfSendRegistrationOtpResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<RequestId>sample string 1</RequestId>
<Message>sample string 2</Message>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfSendRegistrationOtpResponse>