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! | |
sku | String! | |
expires_at | ISODateTime | |
is_active | Boolean |
Referenced By
- lot_create Mutation
Example
{
"customer_account_id": "abc123",
"name": "abc123",
"sku": "abc123",
"expires_at": "abc123",
"is_active": true
}