---
title: "Get All Products"
method: GET
path: "/wms/products"
tags: ["wms", "Products"]
---

# Get All Products

`GET /wms/products`

Returns all Products for the WMS connection associated with the provided access token.

## Query parameters

- `page_token` string, nullable
- `limit` integer
- `ids` WmsProductIdsQueryParam
  - `in` string[], required — A comma-separated list of resource IDs. If provided, all other query params are ignored.
- `created_date` WmsProductCreatedDateQueryParam
  - `eq` string, date-time
  - `neq` string, date-time
  - `in` string[] — Comma-separated.
  - `nin` string[] — Comma-separated.
  - `gt` string, date-time
  - `gte` string, date-time
  - `lt` string, date-time
  - `lte` string, date-time
- `updated_date` WmsProductUpdatedDateQueryParam
  - `eq` string, date-time
  - `neq` string, date-time
  - `in` string[] — Comma-separated.
  - `nin` string[] — Comma-separated.
  - `gt` string, date-time
  - `gte` string, date-time
  - `lt` string, date-time
  - `lte` string, date-time
- `trackstar_created_date` WmsProductTrackstarCreatedDateQueryParam
  - `eq` string, date-time
  - `neq` string, date-time
  - `in` string[] — Comma-separated.
  - `nin` string[] — Comma-separated.
  - `gt` string, date-time
  - `gte` string, date-time
  - `lt` string, date-time
  - `lte` string, date-time
- `trackstar_updated_date` WmsProductTrackstarUpdatedDateQueryParam
  - `eq` string, date-time
  - `neq` string, date-time
  - `in` string[] — Comma-separated.
  - `nin` string[] — Comma-separated.
  - `gt` string, date-time
  - `gte` string, date-time
  - `lt` string, date-time
  - `lte` string, date-time
- `trackstar_tags` WmsProductTrackstarTagsFlatQueryParam
  - `contains` string[] — Comma-separated.
  - `not_contains` string[] — Comma-separated.
- `warehouse_customer_id` WmsProductWarehouseCustomerIdQueryParam
  - `eq` string
  - `neq` string
  - `in` string[] — Comma-separated.
  - `nin` string[] — Comma-separated.
  - `contains` string
  - `not_contains` string
- `sku` WmsProductSkuQueryParam
  - `eq` string
  - `neq` string
  - `in` string[] — Comma-separated.
  - `nin` string[] — Comma-separated.
  - `contains` string
  - `not_contains` string
  - `is_null` boolean — Filter by whether the field is null.

## Headers

- `x-trackstar-api-key` string, required
- `x-trackstar-access-token` string, required

## Response `200`

Successful response

- WmsProductsListEndpoint
  - `data` WmsProductApiItemSchema[], required
    - `id` string, required — The unique ID of the product.
    - `warehouse_customer_id` string, nullable, required — The ID of the merchant/tenant/customer that owns the product. Can be passed into the [Warehouse Customer](/api-reference/wms-api/warehouse-customers/get-item) endpoint for more details.
    - `created_date` string, date-time, required — The date the product was created.
    - `updated_date` string, date-time, required — The date the product was last updated.
    - `name` string, required — name
    - `sku` string, nullable, required — sku
    - `gtin` string, nullable, required — The Global Trade Item Number of the product. i.e. UPC, EAN, or ISBN.
    - `unit_price` number, nullable, required — The price of the product.
    - `inventory_items` ProductInventoryItems[], required — A list of inventory items associated with the product.
      - `inventory_item_id` string, required — ID of the inventory item. Can be passed into the [Inventory](/api-reference/wms-api/inventory/get-item) endpoint for more details.
      - `sku` string, nullable, required
      - `unit_quantity` integer, required — The number of units of the inventory item in the product.
    - `is_kit` boolean, required
    - `active` boolean, required — Whether the product is active.
    - `supplier_object` ProductSupplier, required
      - `supplier_id` string, required — The ID of the supplier.
      - `supplier_name` string, nullable, required — The name of the supplier.
    - `country_of_origin` string, nullable, required — The country of origin of the product.
    - `harmonized_code` string, nullable, required — The harmonized HS code of the product.
    - `supplier_products` ProductSupplierProducts[], required — A list of supplier products associated with the product.
      - `supplier_id` string, required — ID of the supplier.
      - `supplier_name` string, nullable, required — Name of the supplier.
      - `external_id` string, nullable, required — The external ID of the product from the supplier.
      - `unit_cost` string, nullable, required — The cost of the product from the supplier.
    - `categories` string[], required — A list of category names associated with the product.
    - `image_urls` string[], required — A list of image URLs associated with the product.
    - `external_system_url` string, nullable, required — URL link to the product in the external system (WMS/Freight etc).
    - `trackstar_tags` unknown[], nullable, required — A list of custom tags associated with the resource. A tag can be either a string or a dictionary with one key-value pair.
      - unknown
    - `additional_fields` object, required — Integration-specific fields
    - `trackstar_created_date` string, date-time, required
    - `trackstar_updated_date` string, date-time, required
  - `next_token` string, nullable, required — See [pagination](/how-to-guides/about-the-api#pagination) for more details.
  - `total_count` integer, required — The number of items returned.

## Other responses

- `422` — Validation error

---

[API](https://skmtc.net/trackstarhq/apis/trackstar-api.md) · [All operations](https://skmtc.net/trackstarhq/apis/trackstar-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/trackstarhq/trackstar-api/versions/4bc5c6e1a8bf/schema)
