Skip to main content

Create a product

Create a product in a product family via the API.

Prerequisites

  • Access token — Authenticate
  • product_family_id from GET /v1/product-families

Request

curl -s -X POST "https://api.catazenta.com/v1/products" \
-H "Authorization: Bearer ${TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"product_family_id": "YOUR_FAMILY_UUID",
"code": "DEMO-SKU-001",
"status": "draft",
"category_ids": []
}'

Adjust body fields to match your family requirements (see Product API).

Next steps