POST api/Account/Login
手机号+密码+小程序用户jsCode 登陆
Request Information
URI Parameters
None.
Body Parameters
LoginRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Tel |
用户手机号 |
string |
Required |
| Password |
密码 |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Tel": "sample string 1",
"Password": "sample string 2"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseResultObjOfLoginResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Mesg | string |
None. |
|
| Data | LoginResponseModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Mesg": "sample string 2",
"Data": {
"StaffId": "sample string 1",
"CompanyId": "sample string 2"
}
}