POST api/AgentShipmentOrder/Extend

Extend client shipment order state by fetching new orders in the server. Use this to sync with server db state.

Request Information

URI Parameters

None.

Body Parameters

ShipmentOrderExtendRequestModel
NameDescriptionTypeAdditional information
DateFrom

date

None.

DateTo

date

None.

id_MemberInfo

integer

None.

CurrentId

the id

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "DateFrom": "2025-08-02T22:56:07.634433+10:00",
  "DateTo": "2025-08-02T22:56:07.634433+10:00",
  "id_MemberInfo": 3,
  "CurrentId": 4
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of ShipmentOrderExtendRequestModel
NameDescriptionTypeAdditional information
DateFrom

date

None.

DateTo

date

None.

id_MemberInfo

integer

None.

CurrentId

the id

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DateFrom": "2025-08-02T22:56:07.634433+10:00",
    "DateTo": "2025-08-02T22:56:07.634433+10:00",
    "id_MemberInfo": 3,
    "CurrentId": 4
  },
  {
    "DateFrom": "2025-08-02T22:56:07.634433+10:00",
    "DateTo": "2025-08-02T22:56:07.634433+10:00",
    "id_MemberInfo": 3,
    "CurrentId": 4
  }
]