Order
List of order shipments.
List of shipments belongs to the indicated order
get/rest/api/orders/{id}/shipment/
Path parameters
idstring required
order number in Apilo system, e.g. <code>AL0012345</code>
Query parameters
offsetinteger
Position indicator (0-beginning, 1-skips one record, 256 - skips 256 records)
limitinteger
Limit of returned results, max 512 records
Response
Shipments array
Example response
{
"list": [
{
"id": 1,
"idExternal": "SH300021044869"
},
{
"id": 2,
"idExternal": "SH300021044870"
},
{
"id": 3,
"idExternal": "SH300021044871"
}
],
"totalCount": 7398,
"pageResultCount": 64
}