POST api/WebAppCustomerLoginAPI
Request Information
URI Parameters
None.
Body Parameters
LoginAPIRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CCode | string |
None. |
|
| Password | string |
None. |
|
| Remembered | boolean |
None. |
|
| ExpressAgentID | string |
None. |
|
| AppID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CCode": "sample string 1",
"Password": "sample string 2",
"Remembered": true,
"ExpressAgentID": "sample string 4",
"AppID": "sample string 5"
}
application/xml, text/xml
Sample:
<WebAppCustomerLoginAPIController.LoginAPIRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMSExpressWeb.Controllers"> <AppID>sample string 5</AppID> <CCode>sample string 1</CCode> <ExpressAgentID>sample string 4</ExpressAgentID> <Password>sample string 2</Password> <Remembered>true</Remembered> </WebAppCustomerLoginAPIController.LoginAPIRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponseBase| Name | Description | Type | Additional information |
|---|---|---|---|
| status | string |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1",
"message": "sample string 2",
"data": {}
}
application/xml, text/xml
Sample:
<APIResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMSExpressWeb.Common"> <data /> <message>sample string 2</message> <status>sample string 1</status> </APIResponseBase>