POST api/verifycode?Token={Token}&Code={Code}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Token

string

Required

Code

integer

Required

Body Parameters

None.

Response Information

Resource Description

ResponseVerifyCode
NameDescriptionTypeAdditional information
IsVerified

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsVerified": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseVerifyCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeeTheProWebAPI.Models">
  <IsVerified>true</IsVerified>
  <Message>sample string 2</Message>
</ResponseVerifyCode>