---
title: "Create Product"
method: POST
path: "/organizations/{orgId}/products"
tags: ["Product"]
---

# Create Product

`POST /organizations/{orgId}/products`

Create a new Product.

This endpoint creates a new Product within the specified Organization. The details of the Product are provided in the request body.

## Path parameters

- `orgId` string, required

## Request body

- ProductRequest
  - `version` integer — The version number of the entity: - **Create entity:** Not valid for initial insertion of new entity - *do not use for Create*. On initial Create, version is set at 1 and listed in the response. - **Update Entity:** On Update, version is required and must match the existing version because a check is performed to ensure sequential versioning is preserved. Version is incremented by 1 and listed 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, required — Descriptive name for the Product providing context and information.
  - `code` string, required — A unique short code to identify the Product. It should not contain control chracters or spaces.

## Response `200`

Returns the created Product

- 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.

## Other responses

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

## Changes

- **2025-08-01** `9f9e5f3dbde7` — 2 breaking
  - the response property `allOf[#/components/schemas/AbstractResponseWithCustomFields]/allOf[#/components/schemas/AbstractResponse]/version` became optional for the status `200`
  - the response property `allOf[#/components/schemas/AbstractResponse]/version` became optional for the status `200`
- **2025-02-21** `d064a12d0d93` — 1 breaking, 1 warning
  - the `allOf[#/components/schemas/AbstractRequestWithCustomFields]/allOf[subschema #2]/customFields` request property type/format changed from ``/`` to `object`/``
  - removed `subschema #1, subschema #2` from the `allOf[#/components/schemas/AbstractRequestWithCustomFields]/allOf[subschema #2]/customFields` request property `allOf` list

[Change history](https://skmtc.dev/m3ter-com/apis/m3ter-api/changes/organizations/:orgId/products/post.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)
