Getting the details of a delivery
API reference DeliveriesAPI
Overview
This endpoint can be used to get the details of a specific delivery
Method access
GET https://api.getbyrd.com/v2/warehouse/deliveries/<delivery_id>
Request Headers
Authorization: Bearer token-from >
Authentication
Content-Type: application/json
User-Agent: your user-agent >
How to call the APIs
Successful response example
data={
"deliveredBoxes": null,
"standardsCompliance": "compliance_not_checked",
"deliveryNotes": null,
"inProcessingDateTime": null,
"deliveryItems": [
{
"hasExistingStorage": false,
"id": "the_delivery_item_id",
"receivedAmount": 0,
"sequenceNumber": 1,
"updatedAt": "2023-03-21T13:04:49.552390+00:00",
"product": {
"sku": "b-t1",
"id": "your_product_id",
"bsku": "BSKU-AXSJVGIKPL",
"organic": false,
"description": null,
"productType": "branding",
"name": "Branding test 1"
},
"boxcode": "1",
"amountArrivedFinished": null,
"amount": 100,
"createdAt": "2023-03-21T13:04:49.552383+00:00",
"amountArrivedDamaged": null
}
],
"sortedBoxesCount": null,
"deliveredPallets": null,
"atWarehouseDateTime": null,
"statusUpdatedAt": "2023-03-21T13:04:49.546599+00:00",
"customsPaid": null,
"deleted": false,
"referenceNumber": null,
"requiresCounting": false,
"updatedAt": "2023-03-21T13:04:49.548351+00:00",
"deliveryStandards": [],
"unmixedDelivery": true,
"deliveryCostsPaid": null,
"createdAt": "2023-03-21T13:04:49.548344+00:00",
"senderName": null,
"inboundingDeadline": {
"type": "not-applicable",
"date": null
},
"sortedItemsCount": null,
"stocktaking": true,
"damages": null,
"meetsEUOrganicRequirements": null,
"deliveryContainers": [
{
"id": "the_container_id",
"exchangeablePallet": false,
"sequenceNumber": 1,
"updatedAt": "2023-03-21T13:04:49.551130+00:00",
"unknownCarrierName": "",
"arrived": false,
"trackingURL": "",
"trackingNumber": "1234567",
"carrier": "DHL_Express",
"type": "pallet",
"createdAt": "2023-03-21T13:04:49.551124+00:00"
}
],
"warehouse": {
"id": "the_warehouse_id",
"countryCode": "DE"
},
"senderAddress": null,
"description": null,
"identifier": "TST-8VO4",
"putawayFee": null,
"type": "regular",
"expectedDeliveryDateFrom": "2023-01-09T00:00:00+00:00",
"id": "the_delivery_id",
"inboundedDateTime": null,
"status": "announced",
"deletedDate": null,
"userID": "your_user_id",
"expectedDeliveryDateTo": "2023-01-16T00:00:00+00:00",
"acceptanceFee": null,
"expressInbounding": false
}
Updated over 1 year ago