---
title: "List Products"
method: GET
path: "/organizations/{orgId}/products"
tags: ["Product"]
---

# List Products

`GET /organizations/{orgId}/products`

Retrieve a list of Products.

This endpoint retrieves a list of all the Products within a specified Organization. The list can be paginated, and supports filtering by specific Product IDs.

## Path parameters

- `orgId` string, required

## Query parameters

- `pageSize` integer
- `nextToken` string
- `ids` string[]

## Response `200`

Returns the list of requested Products

- PaginatedProductResponseData
  - `data` ProductResponse[]
    - `id` string, required — The UUID of the entity.
    - `version` integer — The version number: - **Create:** On initial Create to insert a new entity, the version is set at 1 in the response. - **Update:** On successful Update, the version is incremented by 1 in the response.
    - `customFields` object — User defined fields enabling you to attach custom data. The value for a custom field can be either a string or a number. If `customFields` can also be defined for this entity at the Organizational level,`customField` values defined at individual level override values of `customFields` with the same name defined at Organization level. See [Working with Custom Fields](https://www.m3ter.com/docs/guides/creating-and-managing-products/working-with-custom-fields) in the m3ter documentation for more information.
    - `name` string — Descriptive name for the Product providing context and information.
    - `code` string — A unique short code to identify the Product. It should not contain control chracters or spaces.
    - `dtCreated` string, date-time — The date and time *(in ISO-8601 format)* when the Product was created.
    - `dtLastModified` string, date-time — The date and time *(in ISO-8601 format)* when the Product was last modified.
    - `createdBy` string — The unique identifier (UUID) of the user who created this Product.
    - `lastModifiedBy` string — The unique identifier (UUID) of the user who last modified this Product.
  - `nextToken` string

## Other responses

- `4XX` — Error message
- `5XX` — Error message

## Changes

- **2025-08-01** `9f9e5f3dbde7` — 1 breaking, 2 info
  - the response's body type/format changed from ``/`` to `object`/`` for status `200`
  - added the optional property `data` to the response with the `200` status
  - added the optional property `nextToken` to the response with the `200` status
- **2025-02-04** `9433593378b5` — 1 breaking, 2 warning
  - the response's body type/format changed from `object`/`` to ``/`` for status `200`
  - removed the optional property `data` from the response with the `200` status
  - removed the optional property `nextToken` from the response with the `200` status

[Change history](https://skmtc.dev/m3ter-com/apis/m3ter-api/changes/organizations/:orgId/products/get.md)

---

[API](https://skmtc.dev/m3ter-com/apis/m3ter-api.md) · [All operations](https://skmtc.dev/m3ter-com/apis/m3ter-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/m3ter-com/m3ter-api/revisions/ac93d1a9e6d9/schema)
