POST api/getverificationcode

Request Information

URI Parameters

None.

Body Parameters

RequestVerificationCode
NameDescriptionTypeAdditional information
AppAccessKey

string

None.

MobileCode

string

None.

MobileNumber

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AppAccessKey": "sample string 1",
  "MobileCode": "sample string 2",
  "MobileNumber": "sample string 3"
}

application/xml, text/xml

Sample:
<RequestVerificationCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeeTheProWebAPI.Models">
  <AppAccessKey>sample string 1</AppAccessKey>
  <MobileCode>sample string 2</MobileCode>
  <MobileNumber>sample string 3</MobileNumber>
</RequestVerificationCode>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseVerificationCode
NameDescriptionTypeAdditional information
Token

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Token": "sample string 1",
  "Message": "sample string 2"
}

application/xml, text/xml

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