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| Name | Description | Type | Additional 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-11-08T22:52:12.2515108+11:00",
"DateTo": "2025-11-08T22:52:12.2515108+11:00",
"id_MemberInfo": 3,
"CurrentId": 4
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ShipmentOrderExtendRequestModel| Name | Description | Type | Additional 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-11-08T22:52:12.2515108+11:00",
"DateTo": "2025-11-08T22:52:12.2515108+11:00",
"id_MemberInfo": 3,
"CurrentId": 4
},
{
"DateFrom": "2025-11-08T22:52:12.2515108+11:00",
"DateTo": "2025-11-08T22:52:12.2515108+11:00",
"id_MemberInfo": 3,
"CurrentId": 4
}
]