POST api/Member/Verify

Request Information

URI Parameters

None.

Body Parameters

VerifyNumber
NameDescriptionTypeAdditional information
SmsID

integer

None.

VerificationCode

string

None.

PhoneNumber

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SmsID": 1,
  "VerificationCode": "sample string 2",
  "PhoneNumber": "sample string 3"
}

application/xml, text/xml

Sample:
<VerifyNumber xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UpmenuApi.Models">
  <PhoneNumber>sample string 3</PhoneNumber>
  <SmsID>1</SmsID>
  <VerificationCode>sample string 2</VerificationCode>
</VerifyNumber>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultClassOfBoolean
NameDescriptionTypeAdditional information
IsOK

boolean

None.

Error

string

None.

Result

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "IsOK": true,
  "Error": "sample string 2",
  "Result": true
}

application/xml, text/xml

Sample:
<ResultClassOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UpmenuApi.Models">
  <Error>sample string 2</Error>
  <IsOK>true</IsOK>
  <Result>true</Result>
</ResultClassOfboolean>