input UpdateCustomBoxInput
Fields
| Field | Type | Description |
|---|---|---|
custom_box_id | String! | |
name | String | If omitted or null, the current box name will be used. |
barcode | String | If omitted or null, the current barcode will be used. |
warehouse_id | String | If omitted or null, the current warehouse will be used. |
on_hand | Int | If omitted or null, the current on-hand quantity will be used. |
price | Decimal | If omitted or null, the current custom box price will be used. |
active | Boolean | If omitted or null, the current active state will be used. |
dimensions | DimensionsInput | If omitted or null, the current dimensions will be used. |
packaging_type | String | The packaging type for the custom box, for example BOX or MAILER. If omitted or null, the current packaging type will be used. |
Referenced By
- custom_box_update Mutation
Example
{
"custom_box_id": "abc123",
"name": "abc123",
"barcode": "abc123",
"warehouse_id": "abc123",
"on_hand": 987,
"price": "abc123",
"active": true,
"dimensions": DimensionsInput,
"packaging_type": "abc123"
}