input CreateLotInput

GraphQL input type for Lot creation.

Fields

FieldTypeDescription
customer_account_idString

Use this when you are a 3PL acting on behalf of one of your customers.

nameString!

Human-readable name for this lot.

skuString!

SKU. SKU matching is case-insensitive and ignores surrounding whitespace.

expires_atISODateTime

Expires at as an ISO-8601 datetime, returned in UTC unless otherwise noted.

is_activeBoolean

Whether this lot is active.

Referenced By

Example

{
  "customer_account_id": "QWNjb3VudDoxMjM0",
  "name": "LOT-2026-001",
  "sku": "BLUE-TEE-M",
  "expires_at": "2026-07-09T15:30:00Z",
  "is_active": true
}