input CreateCustomBoxInput
Fields
| Field | Type | Description |
|---|---|---|
name | String! | |
barcode | String | |
warehouse_id | String! | |
dimensions | DimensionsInput! | |
on_hand | Int | The on-hand quantity for the custom box. |
price | Decimal | The custom box price. |
active | Boolean | Whether the custom box is active. |
packaging_type | String | The packaging type for the custom box, for example BOX or MAILER. |
Referenced By
- custom_box_create Mutation
Example
{
"name": "abc123",
"barcode": "abc123",
"warehouse_id": "abc123",
"dimensions": DimensionsInput,
"on_hand": 987,
"price": "abc123",
"active": true,
"packaging_type": "abc123"
}