object WarehouseProductInbound
Fields
| Field | Type | Description |
|---|---|---|
id | String | Public API ID for this identifiable. |
legacy_id | BigInt | Numeric legacy ID for this identifiable; use only where legacy IDs are required. |
sku | String | SKU. SKU matching is case-insensitive and ignores surrounding whitespace. |
warehouse_id | String | Public API warehouse ID. Use this when passing or filtering by a warehouse; warehouse fields are display values or nested objects. |
po_id | String | Public API PO ID that identifies the related record. |
purchase_order_line_item_id | String | Public API purchase order line item ID that identifies the related record. |
po_date | ISODateTime | PO date in ISO-8601 date or datetime format, returned in UTC when time is included. |
quantity | Int | Quantity as a whole-unit count. |
quantity_received | Int | Quantity received as a whole-unit count. |
quantity_rejected | Int | Quantity rejected as a whole-unit count. |
sell_ahead | Int | Quantity allowed to sell ahead of receipt for this warehouse product inbound record. |
status | String | Current status; use the API status values returned by this field when filtering or updating. |
Referenced By
Example
{
"id": "UmVjb3JkOjEyMzQ=",
"legacy_id": 1234,
"sku": "BLUE-TEE-M",
"warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
"po_id": "UHVyY2hhc2VPcmRlcjoxMjM0",
"purchase_order_line_item_id": "UHVyY2hhc2VPcmRlcjoxMjM0",
"po_date": "2026-07-09T15:30:00Z",
"quantity": 2,
"quantity_received": 2,
"quantity_rejected": 2,
"sell_ahead": 2,
"status": "pending"
}