POST api/User/ConfirmOTP
Request Information
URI Parameters
None.
Body Parameters
VerifyOTPModelName | Description | Type | Additional information |
---|---|---|---|
Mobile | string |
None. |
|
CountryCode | integer |
None. |
|
TemporaryId | integer |
None. |
|
OTP | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Mobile": "sample string 1", "CountryCode": 2, "TemporaryId": 3, "OTP": "sample string 4" }
application/xml, text/xml
Sample:
<VerifyOTPModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ETelMed.Entity.Models.Login"> <CountryCode>2</CountryCode> <Mobile>sample string 1</Mobile> <OTP>sample string 4</OTP> <TemporaryId>3</TemporaryId> </VerifyOTPModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseOfStringName | Description | Type | Additional information |
---|---|---|---|
IsSuccess | boolean |
None. |
|
Message | string |
None. |
|
Status | integer |
None. |
|
Result | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsSuccess": true, "Message": "sample string 2", "Status": 3, "Result": "sample string 4" }
application/xml, text/xml
Sample:
<ResponseOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ETelMed.Entity.Models.Common"> <IsSuccess>true</IsSuccess> <Message>sample string 2</Message> <Result>sample string 4</Result> <Status>3</Status> </ResponseOfstring>