POST api/v1/auth/login
Request Information
URI Parameters
None.
Body Parameters
AuthLoginRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Username | string |
None. |
|
| Password | string |
None. |
|
| CompanyId | integer |
None. |
|
| ActionLogCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Username": "sample string 1",
"Password": "sample string 2",
"CompanyId": 3,
"ActionLogCode": "sample string 4"
}
application/xml, text/xml
Sample:
<AuthLoginRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Customers.Api.Models"> <ActionLogCode>sample string 4</ActionLogCode> <CompanyId>3</CompanyId> <Password>sample string 2</Password> <Username>sample string 1</Username> </AuthLoginRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfAuthenticationToken| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | AuthenticationToken |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.