POST api/identityVerification/resendRegistrationOTP

Request Information

URI Parameters

None.

Body Parameters

BO.Identity.Requests.ResendOTPRequest
NameDescriptionTypeAdditional information
RequestId

string

None.

RequestType

BO.Identity.Enums.VerificationRequestType

None.

Request Formats

application/json, text/json

Sample:
{
  "requestId": "sample string 1",
  "requestType": 1
}

application/xml, text/xml

Sample:
<ResendOTPRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <RequestType>FirstLogin</RequestType>
  <RequestId>sample string 1</RequestId>
</ResendOTPRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfBO.Identity.Response.ResendOtpResponse
NameDescriptionTypeAdditional information
ResponseObject

BO.Identity.Response.ResendOtpResponse

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": {
    "success": true,
    "message": "sample string 2",
    "exceededAttempts": true
  },
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfResendOtpResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <Success>true</Success>
    <Message>sample string 2</Message>
    <ExceededAttempts>true</ExceededAttempts>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfResendOtpResponse>