license_plate_numbers

Fetch paginated license plate numbers using exact filters.

Arguments

ArgumentTypeRequiredDefaultDescription
ids[String]No

Exact Public API LPN IDs to include.

order_ids[String]No

Exact Public API order IDs. Matches all LPNs associated with any order.

barcodes[String]No

Exact LPN barcodes to include.

warehouse_idStringNo

Exact Public API warehouse ID.

location_ids[String]No

Exact Public API location IDs.

parent_lpn_ids[String]No

Exact Public API parent LPN IDs.

status[LicensePlateNumberV2Status]No

LPN statuses to include. Defaults to UNUSED, INUSE, and USED.

container_types[LicensePlateNumberV2ContainerType]No

LPN container types to include.

skus[String]No

SKUs contained by matching LPNs.

lot_ids[String]No

Exact Public API lot IDs.

item_bin_ids[String]No

Exact Public API item-bin IDs.

customer_account_ids[String]No

Exact Public API 3PL customer account IDs.

created_fromISODateTimeNo

Inclusive created-at lower bound.

created_toISODateTimeNo

Inclusive created-at upper bound.

updated_fromISODateTimeNo

Inclusive updated-at lower bound.

updated_toISODateTimeNo

Inclusive updated-at upper bound.

analyzeBooleanNo

If true, the query will only be analyzed (cost estimated) without executing it.

Return Type

LicensePlateNumbersQueryResult

Query

query license_plate_numbers(
  $ids: [String],
  $order_ids: [String],
  $barcodes: [String],
  $warehouse_id: String,
  $location_ids: [String],
  $parent_lpn_ids: [String],
  $status: [LicensePlateNumberV2Status],
  $container_types: [LicensePlateNumberV2ContainerType],
  $skus: [String],
  $lot_ids: [String],
  $item_bin_ids: [String],
  $customer_account_ids: [String],
  $created_from: ISODateTime,
  $created_to: ISODateTime,
  $updated_from: ISODateTime,
  $updated_to: ISODateTime,
  $analyze: Boolean
) {
  license_plate_numbers(
    ids: $ids,
    order_ids: $order_ids,
    barcodes: $barcodes,
    warehouse_id: $warehouse_id,
    location_ids: $location_ids,
    parent_lpn_ids: $parent_lpn_ids,
    status: $status,
    container_types: $container_types,
    skus: $skus,
    lot_ids: $lot_ids,
    item_bin_ids: $item_bin_ids,
    customer_account_ids: $customer_account_ids,
    created_from: $created_from,
    created_to: $created_to,
    updated_from: $updated_from,
    updated_to: $updated_to,
    analyze: $analyze
  ) {
    request_id
    complexity
    data {
      ...LicensePlateNumberV2ConnectionFragment
    }
  }
}

Variables

{
  "ids": ["abc123"],
  "order_ids": ["abc123"],
  "barcodes": ["abc123"],
  "warehouse_id": "abc123",
  "location_ids": ["abc123"],
  "parent_lpn_ids": ["abc123"],
  "status": ["UNUSED"],
  "container_types": ["BOX"],
  "skus": ["abc123"],
  "lot_ids": ["abc123"],
  "item_bin_ids": ["abc123"],
  "customer_account_ids": ["abc123"],
  "created_from": ISODateTime,
  "created_to": ISODateTime,
  "updated_from": ISODateTime,
  "updated_to": ISODateTime,
  "analyze": true
}

Response

{
  "data": {
    "license_plate_numbers": {
      "request_id": "UmVjb3JkOjEyMzQ=",
      "complexity": 100,
      "data": LicensePlateNumberV2Connection
    }
  }
}