API documentation
Method list
Test your request
Changelog


getInventoryFulfillmentDeliveries
The method allows you to retrieve a list of fulfillment deliveries with optional filtering. Results are paginated with 100 results per page.


Input parameters
fulfillment_warehouse_idint(optional) Filter by fulfillment warehouse identifier
warehouse_idint(optional) Filter by source warehouse identifier
statusint(optional) Filter by delivery status
date_fromint(optional) Date from filter (unix timestamp)
date_toint(optional) Date to filter (unix timestamp)
filter_document_numbervarchar(30)(optional) Filter by document number (partial match)
pageint(optional) Results page (0-based, 100 results per page)



Output data
The method returns the data in JSON format.
statusvarchar(30)SUCCESS - request executed correctly
ERROR - an error occurred during an API request. Error details will be described in 2 additional returned fields: error_message and error_code
deliveriesarrayArray of fulfillment deliveries
| - delivery_idintDelivery identifier
| - namevarchar(80)Delivery name
| - document_numbervarchar(30)Full document number
| - date_createdintCreation date (unix timestamp)
| - items_countintNumber of items
| - statusintDelivery status (0-draft, 1-packing, 2-registered, 3-in_transit, 4-unpacking, 5-completed, 6-cancelled)



Sample
Input data:
Output data:
A sample request in PHP: