POST api/VerifyCode
Request Information
URI Parameters
None.
Body Parameters
VerifyCode| Name | Description | Type | Additional information |
|---|---|---|---|
| Phone | string |
None. |
|
| Code | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Phone": "sample string 1",
"Code": "sample string 2"
}
application/xml, text/xml
Sample:
<VerifyCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cabie.API.Models"> <Code>sample string 2</Code> <Phone>sample string 1</Phone> </VerifyCode>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
VerifyCodeResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Response": "sample string 1"
}
application/xml, text/xml
Sample:
<VerifyCodeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cabie.API.Models"> <Response>sample string 1</Response> </VerifyCodeResponse>