Receive Delivery Booking
Process delivery booking notifications for scheduled warehouse deliveries.
HTTP Method POST
Path /inbound/receiveDeliveryBooking
Request Body
Section titled “Request Body”The request body should contain a DeliveryBooking object with delivery scheduling information.
Response
Section titled “Response”Returns a Response object indicating the processing result.
Example Usage
Section titled “Example Usage”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" }'