---
title: "Create product"
method: POST
path: "/products"
tags: ["Product"]
---

# Create product

`POST /products`

## Request body

- object
  - `item_code` string, nullable
  - `name` string
  - `serial_number` string, nullable
  - `price` number
  - `price_includes_tax` boolean, nullable
  - `product_supplier_id` string, int64 — product supplier id
  - `stock_level` string, decimal, nullable
  - `tax_id` string, int64 — tax id
  - `cost_price` string, decimal, nullable
  - `notes` string, nullable

## Response `201`

Resource was created

- Product
  - `archived_at` string, date-time, nullable
  - `cost_price` string, decimal, nullable
  - `created_at` string, date-time
  - `id` string, int64
  - `item_code` string, nullable
  - `links` object
    - `self` string, uri
  - `name` string
  - `notes` string, nullable
  - `price_ex_tax` string, decimal, nullable
  - `price_including_tax` string, decimal, nullable
  - `product_supplier` object
    - `links` object
      - `self` string, uri
  - `serial_number` string, nullable
  - `stock_adjustments` object
    - `links` object
      - `self` string, uri
  - `stock_level` string, decimal, nullable
  - `tax` object
    - `links` object
      - `self` string, uri
  - `updated_at` string, date-time
  - `product_supplier_id` string, int64

## Other responses

- `422` — Resource could not be saved due to validation errors

---

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