POST RegisterMobile
Request Information
URI Parameters
None.
Body Parameters
RegisterMobileRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Mobile | string |
None. |
|
| RequestType | integer |
None. |
|
| string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mobile": "sample string 1",
"RequestType": 2,
"Email": "sample string 3"
}
application/xml, text/xml
Sample:
<RegisterMobileRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NailItWeb.UINew.Models"> <Email>sample string 3</Email> <Mobile>sample string 1</Mobile> <RequestType>2</RequestType> </RegisterMobileRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RegisterMobileResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| VerificationCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 1,
"Message": "sample string 2",
"VerificationCode": "sample string 3"
}
application/xml, text/xml
Sample:
<RegisterMobileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NailItWeb.UINew.Models"> <Message>sample string 2</Message> <Status>1</Status> <VerificationCode>sample string 3</VerificationCode> </RegisterMobileResponse>