object ProductOrderDetail
Fields
| Field | Type | Description |
|---|---|---|
line_item_id | Int | Line item ID |
order_id | Int | The Order ID |
order_date | String | The Order date |
order_number | String | The Order number |
shop_name | String | The Order's shop name |
quantity | Int | The amount of the order for this particular item |
quantity_shipped | Int | The amount of this particular item that has already been shipped |
quantity_allocated | Int | the amount of this item currently allocated for this order |
backorder_quantity | Int | The amount of this particular item that's backoreded for this order |
Referenced By
Example
{
"line_item_id": 987,
"order_id": 987,
"order_date": "abc123",
"order_number": "abc123",
"shop_name": "abc123",
"quantity": 987,
"quantity_shipped": 987,
"quantity_allocated": 987,
"backorder_quantity": 987
}