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