Shipment Dispatch Report
Retrieve shipment dispatch records for a specified time range to support stock reconciliation processes.
HTTP Method GET
Path /inbound/v2/shipment-dispatch
Query Parameters
Section titled “Query Parameters”startTime(string, required) - Start time in ISO 8601 formatendTime(string, required) - End time in ISO 8601 formatstartIndex(integer, optional) - Starting index for paginationendIndex(integer, optional) - Ending index for pagination
Response
Section titled “Response”Returns a collection of ShipmentDispatchDto objects containing dispatch details.
Example Usage
Section titled “Example Usage”curl -X GET \ "https://api.wms.example.com/inbound/v2/shipment-dispatch?startTime=2024-01-01T00:00:00Z&endTime=2024-01-31T23:59:59Z" \ -H "Authorization: Bearer YOUR_API_KEY"