POST Authentication/PasswordOTPVerify
Request Information
URI Parameters
None.
Body Parameters
OtpVerify| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
None. |
|
| Otp | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "sample string 1",
"Otp": "sample string 2"
}
application/xml, text/xml
Sample:
<OtpVerify xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models"> <ID>sample string 1</ID> <Otp>sample string 2</Otp> </OtpVerify>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ResponseCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ResponseCode": "sample string 2"
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models"> <ResponseCode>sample string 2</ResponseCode> <Success>true</Success> </Response>