InventoryOrders
List Inventory Order Items
This endpoint retrieves a list of all the items for the given inventory order.
get/inventory/orders/{orderId}/items
Query parameters
brand_idsstring[]
A comma-separated list of brand IDs to retrieve inventory order items for.
category_idsstring[]
A comma-separated list of category IDs to retrieve inventory order items for.
Response
The inventory order items were successfully retrieved
Example response
{
"data": [
{
"quantity": 10,
"unit_price": 200,
"product_name": "Blissful Body Butter",
"line_total": 2000
}
]
}