Skip to content

Receive Delivery Booking

Process delivery booking notifications for scheduled warehouse deliveries.

HTTP Method POST

Path /inbound/receiveDeliveryBooking

The request body should contain a DeliveryBooking object with delivery scheduling information.

Returns a Response object indicating the processing result.

Terminal window
curl -X POST \
https://api.wms.example.com/inbound/receiveDeliveryBooking \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"bookingReference": "BOOK-2024-001234",
"deliveryDate": "2024-01-25T10:00:00Z",
"supplier": "SUPPLIER-001",
"warehouseId": "WH-001"
}'