Booking method
GET /v2/Shipment/list
Uri parameters
| Name | Description | Type | Additional description |
|---|---|---|---|
| Page | Default is 1. Increase for next page. | Int32 | |
| PageSize | Sets how many items you want to list pr page. Maximum is 100. Default is 10. | Int32 | |
| FromDate | Set from which date you want to list shipments. The date filter based on shipment created date. In other words, when the shipment was first booked as draft or published. | DateTime |
Body parameters
None
Request body sample:
None
Response sample:
[
{
"ParcelStatus": 1,
"CustomerId": "sample string 2",
"ParcelId": "sample string 3",
"IsReturn": false,
"Weight": 1.1,
"Length": 1,
"Height": 1,
"Width": 1,
"Volume": 1.1,
"Addresses": [
{
"AddressTypeId": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"CompanyName": "sample string 4",
"Address": "sample string 5",
"Address2": "sample string 6",
"Zip": "sample string 7",
"Place": "sample string 8",
"County": "sample string 9",
"Country": "sample string 10"
}
],
"PickupPhone": "sample string 11",
"PickupEmail": "sample string 12",
"RecipientPhone": "sample string 13",
"RecipientEmail": "sample string 14",
"ReturnPhone": "sample string 15",
"ReturnEmail": "sample string 16",
"PickupPointId": 1,
"DeliveryDate": "2025-11-04T00:19:39",
"DeliveryDateTo": "2025-11-04T00:19:39",
"PickupDate": "2025-11-04T00:19:39",
"ProductCode": "sample string 21",
"Services": [
"sample item string 1",
"sample item string 2"
],
"DeliveryType": 1,
"CommentToCarrier": "sample string 24",
"GoodsDescription": "sample string 25",
"ShipmentId": "sample string 26",
"UnitCode": "sample string 27",
"RecipientShallPay": false,
"RecipientCustomerId": 1,
"References": [
{
"ReferenceTypeId": 1,
"ReferenceLevel": 1,
"ReferenceText": "sample string 3"
}
],
"LoadingMeters": 1.1,
"PalletSpaces": 1
}
]