POST AuthenticateUser
Request Information
URI Parameters
None.
Body Parameters
AuthenticateUserRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Mobile | string |
None. |
|
| VerificationCode | string |
None. |
|
| string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mobile": "sample string 1",
"VerificationCode": "sample string 2",
"Email": "sample string 3"
}
application/xml, text/xml
Sample:
<AuthenticateUserRequest 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> <VerificationCode>sample string 2</VerificationCode> </AuthenticateUserRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AuthenticateResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| Is_Authenticate | boolean |
None. |
|
| Customer_Id | integer |
None. |
|
| App_User_Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 1,
"Message": "sample string 2",
"Is_Authenticate": true,
"Customer_Id": 4,
"App_User_Id": 5
}
application/xml, text/xml
Sample:
<AuthenticateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NailItWeb.UINew.Models"> <App_User_Id>5</App_User_Id> <Customer_Id>4</Customer_Id> <Is_Authenticate>true</Is_Authenticate> <Message>sample string 2</Message> <Status>1</Status> </AuthenticateResponse>