POST AuthenticateUser/{Mobile}/{VerificationCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Mobile

string

Required

VerificationCode

string

Required

Body Parameters

None.

Response Information

Resource Description

AuthenticateResponse
NameDescriptionTypeAdditional 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>