POST api/DeliveryApp/LCLShipment

Request Information

URI Parameters

None.

Body Parameters

DeliveryShipmentRequest
NameDescriptionTypeAdditional 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": "2026-01-07T15:24:06.8526179+07:00",
  "to": "2026-01-07T15:24:06.8526179+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>2026-01-07T15:24:06.8526179+07:00</from>
  <keyword>sample string 4</keyword>
  <to>2026-01-07T15:24:06.8526179+07:00</to>
  <token>sample string 1</token>
</DeliveryShipmentRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DeliveryShipmentRequest'.

Response Information

Resource Description

apiResult
NameDescriptionTypeAdditional information
status

apiResultState

None.

statusString

string

None.

message

string

None.

data

Object

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>