POST api/DeliveryApp/LCLShipment
Request Information
URI Parameters
None.
Body Parameters
DeliveryShipmentRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| from | date |
None. |
|
| to | date |
None. |
|
| keyword | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"from": "2025-12-06T11:06:12.510236+07:00",
"to": "2025-12-06T11:06:12.510236+07:00",
"keyword": "sample string 4"
}
application/xml, text/xml
Sample:
<DeliveryShipmentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMSDeliveryWebApp.Models"> <from>2025-12-06T11:06:12.510236+07:00</from> <keyword>sample string 4</keyword> <to>2025-12-06T11:06:12.510236+07:00</to> <token>sample string 1</token> </DeliveryShipmentRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
apiResult| Name | Description | Type | Additional information |
|---|---|---|---|
| status |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": 0,
"statusString": "ok",
"message": "sample string 1",
"data": {}
}
application/xml, text/xml
Sample:
<apiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMSDeliveryWebApp.Models"> <data /> <message>sample string 1</message> <status>ok</status> </apiResult>