POST api/account/verifyCode?otpCode={otpCode}&userMail={userMail}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
otpCode | integer |
Required |
|
userMail | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseModelName | Description | Type | Additional information |
---|---|---|---|
IsSuccess | boolean |
None. |
|
StatusCode | string |
None. |
|
ErrorDescription | string |
None. |
|
Message | string |
None. |
|
Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "isSuccess": true, "statusCode": "sample string 2", "errorDescription": "sample string 3", "message": "sample string 4", "data": {} }
application/xml, text/xml
Sample:
<ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DigitalMoneyCollector.Repository.BindingModel"> <Data /> <ErrorDescription>sample string 3</ErrorDescription> <IsSuccess>true</IsSuccess> <Message>sample string 4</Message> <StatusCode>sample string 2</StatusCode> </ResponseModel>