getInventoryFulfillmentDeliveryItems
The method allows you to retrieve items from a specific fulfillment delivery. Results are paginated with 100 results per page.
Input parameters
Output data:
A sample request in PHP:
| delivery_id | int | Fulfillment delivery identifier |
| page | int | (optional) Results page (0-based, 100 results per page) |
Output data
The method returns the data in JSON format.
| status | varchar(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 |
| items | array | Array of delivery items |
| | - item_id | int | Item identifier |
| | - position | int | Item position in the delivery |
| | - product_id | int | Product identifier |
| | - product_name | varchar(200) | Product name |
| | - product_ean | varchar(32) | Product EAN |
| | - product_sku | varchar(50) | Product SKU |
| | - quantity | int | Quantity |
Sample
Input data:Output data:
A sample request in PHP: