input TransferInventoryInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | 3PL child/customer account ID this record belongs to; omit on inputs to use the authenticated account. |
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. |
quantity | Int! | Quantity as a whole-unit count. |
location_from_id | String | Public API location from ID that identifies the related record. |
location_to_id | String | Public API location to ID that identifies the related record. |
reason | String | Human-readable reason for this inventory. |
lpn_from_id | String | Public API LPN from ID that identifies the related record. |
lpn_to_id | String | Public API LPN to ID that identifies the related record. |
Referenced By
- inventory_transfer Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"sku": "BLUE-TEE-M",
"warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
"quantity": 2,
"location_from_id": "TG9jYXRpb246MTIzNA==",
"location_to_id": "TG9jYXRpb246MTIzNA==",
"reason": "Customer requested expedited handling.",
"lpn_from_id": "TGljZW5zZVBsYXRlTnVtYmVyOjEyMzQ=",
"lpn_to_id": "TGljZW5zZVBsYXRlTnVtYmVyOjEyMzQ="
}