input CreateLotInput
GraphQL input type for Lot creation.
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers. |
name | String! | Human-readable name for this lot. |
sku | String! | SKU. SKU matching is case-insensitive and ignores surrounding whitespace. |
expires_at | ISODateTime | Expires at as an ISO-8601 datetime, returned in UTC unless otherwise noted. |
is_active | Boolean | Whether this lot is active. |
Referenced By
- lot_create Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"name": "LOT-2026-001",
"sku": "BLUE-TEE-M",
"expires_at": "2026-07-09T15:30:00Z",
"is_active": true
}