GET v1/utilityClass/resendOTP?identifier={identifier}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| identifier | string |
Required |
Body Parameters
None.
Response Information
Resource Description
sendOTPResult| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| errorMsg | string |
None. |
|
| identifer | string |
None. |
|
| otp | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"errorMsg": "sample string 3",
"identifer": "sample string 4",
"otp": "sample string 5"
}
application/xml, text/xml
Sample:
<sendOTPResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/unifiedApp.Models.utilityClass"> <errorMsg>sample string 3</errorMsg> <identifer>sample string 4</identifer> <message>sample string 2</message> <otp>sample string 5</otp> <success>true</success> </sendOTPResult>
text/html
Sample:
{"success":true,"message":"sample string 2","errorMsg":"sample string 3","identifer":"sample string 4","otp":"sample string 5"}