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

# Create product

`POST /products`

Add a new product.

## Request body

- CreateProductConfigRequestDocumented
  - `product` ProductConfigDocumented, required
    - `product_name` string, required — The name of the product. This is not customer facing.
    - `models` string[], required — The models that are part of the product.
    - `description` string — A brief description of the product. This is not customer facing.

## Response `200`

OK

- object
  - `status` 'success', required
  - `data` ProductConfigResponse, required
    - `product` ProductConfig, required
      - `id` string, required
      - `created_at` string, date-time
      - `updated_at` string, date-time
      - `product_name` string
      - `is_system_product` boolean, required
      - `description` string
      - `models` string[], required
  - `message` string, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.dev/prequel/apis/prequel-data-export.md) · [All operations](https://skmtc.dev/prequel/apis/prequel-data-export/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/prequel/prequel-data-export/revisions/09c662a871f8/schema)
