Code | Description |
---|---|
401 | The provided token is invalid |
422 | Could not process parameters |
// invalid params GET /api/shopify/inventory_batch_order_items?line_item_id=37651 422 param is missing or the value is empty: order_id
// invalid token GET /api/shopify/inventory_batch_order_items?order_id=17841&line_item_id=97368 401 HTTP Token: Access denied.
// valid token and params GET /api/shopify/inventory_batch_order_items?order_id=64371&line_item_id=27144 200 [ { "id": 1597, "inventory_batch_id": 4047, "quantity": 2, "created_at": "2023-07-03 05:48:06 UTC", "updated_at": "2023-07-03 05:48:06 UTC", "order_id": 64371, "line_item_id": 27144 } ]
Param name | Description |
---|---|
line_item_id
required |
Shopify line item ID Validations:
|
order_id
required |
Shopify order ID Validations:
|
Header name | Description |
---|---|
Authorization required |
Bearer token |