---
title: "List all products for merchant"
method: GET
path: "/v3/products"
tags: ["Products"]
---

# List all products for merchant

`GET /v3/products`

## Query parameters

- `page` number
- `limit` number
- `filter` string

## Response `200`

List all products

- object
  - `payload` object, required — Response payload, will be empty when success is false
    - `data` ProductV3Dto[]
      - `id` string, required — Product ID
      - `manufacturerId` string, required — Merchant ID
      - `name` string, required — Internal catalog name of the product
      - `displayName` string, required — Customer-facing display name of the product
      - `status` 'ACTIVE' | 'INACTIVE', required — Product status (active or inactive)
      - `createdAt` string, date-time, required — Product creation date
      - `updatedAt` string, date-time, nullable, required — Product last updated date
      - `description` string, nullable — Product description
      - `integrationItemId` string — ERP integration item ID
      - `integrationItemName` string, nullable — ERP integration item name
      - `erpClassId` string — ERP class ID
      - `erpClassName` string, nullable — ERP class name
    - `limit` number
    - `totalItems` number
    - `currentPage` number
  - `success` boolean, required — Boolean with true=success, false=failure
  - `message` string, required — Plain-text description of the result
  - `error` IntegratorsApiError, required
    - `code` number, required — API response code
    - `message` string, required — API response message
    - `details` object — Additional details about the error

## Other responses

- `404` — Merchant not found
- `500` — Internal Server Error

---

[API](https://skmtc.net/tabsplatform/apis/tabs-external-api.md) · [All operations](https://skmtc.net/tabsplatform/apis/tabs-external-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tabsplatform/tabs-external-api/revisions/7e8885517814/schema)
