POST api/IClassUsers/VerifyOTPForForgotPassword
Request Information
URI Parameters
None.
Body Parameters
clsForgotPassword| Name | Description | Type | Additional information |
|---|---|---|---|
| MobileNumber | string |
None. |
|
| OTP | string |
None. |
|
| NewPassword | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"MobileNumber": "sample string 1",
"OTP": "sample string 2",
"NewPassword": "sample string 3"
}
application/xml, text/xml
Sample:
<clsForgotPassword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveTextBooksModel.Entity"> <MobileNumber>sample string 1</MobileNumber> <NewPassword>sample string 3</NewPassword> <OTP>sample string 2</OTP> </clsForgotPassword>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| ResponseMessage | string |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 1,
"ResponseMessage": "sample string 2",
"Id": 3
}
application/xml, text/xml
Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveTextBooksModel.Entity"> <Id>3</Id> <ResponseCode>1</ResponseCode> <ResponseMessage>sample string 2</ResponseMessage> </APIResponse>