---
title: "Create Product"
method: POST
path: "/api/v2/products"
tags: ["Products"]
---

# Create Product

`POST /api/v2/products`

Create a new product with pricing and description.

## Request body

- ProductCreate
  - `name` string, required — Name of the product.
  - `description` string, nullable — Description of the product.
  - `price` union — [DEPRECATED] Price of the product. Use 'prices' array for multi-currency support.
    - number
    - string
  - `prices` ProductPriceInlineCreate[], nullable — Prices for the product in different currencies. At least one price is required.
    - `currency` 'SAR' | 'USD' | 'EUR' | 'GBP' | 'AED' | 'BHD' | 'KWD' | 'OMR' | 'QAR', required — ISO 4217 currency codes supported by Moyasar. Includes all currencies supported by Moyasar payment gateway.
    - `amount` union, required — Price amount (must be >= 1 for non-metered products; metered products can use up to 12 decimal places)
      - number
      - string
    - `is_price_inclusive_of_vat` boolean — [DEPRECATED] This field will be removed; non-exempt prices will be assumed inclusive.
    - `is_price_exempt_from_vat` boolean — If True, no VAT applies to this price
  - `is_one_time` boolean — Will this product be used only one time in one invoice?
  - `type` 'RECURRING' | 'ONE_OFF' | 'METERED', required
  - `recurring_interval` 'WEEK' | 'MONTH' | 'SEMESTER' | 'YEAR'
  - `recurring_interval_count` integer — The billing cycle multiple if the product is recurring
  - `is_price_exempt_from_vat` boolean — Is the price exempt from VAT? "In case the organization does not have a VAT number registration, "this will be treated as True regardless of the value provided in this field.
  - `is_price_inclusive_of_vat` boolean — [DEPRECATED] This field will be removed; non-exempt prices will be assumed inclusive.
  - `external_metadata` ExternalMetadataStorage

## Response `200`

Successful Response

- ProductDto — Product response DTO. This DTO includes both legacy single-price fields and new multi-currency `prices` array for backward compatibility with existing API consumers. Legacy fields (`price`, `currency`, `vat_amount`, etc.) represent the default price and are kept for backward compatibility. New integrations should use the `prices` array.
  - `created_at` string, date-time — Creation timestamp of the object.
  - `updated_at` string, date-time, nullable — Last modification timestamp of the object.
  - `id` string, uuid4 — Unique identifier (UUID) of the product
  - `name` string — Name of the product.
  - `description` string, nullable — Description of the product.
  - `type` 'RECURRING' | 'ONE_OFF' | 'METERED'
  - `recurring_interval` 'WEEK' | 'MONTH' | 'SEMESTER' | 'YEAR'
  - `recurring_interval_count` integer — The billing cycle multiple if the product is recurring
  - `price` string — Total price including VAT (default currency).
  - `currency` 'AED' | 'AFN' | 'ALL' | 'AMD' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BOV' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CHW' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'COU' | 'CRC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MXV' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLE' | 'SOS' | 'SRD' | 'SSP' | 'STN' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'USN' | 'UYI' | 'UYU' | 'UYW' | 'UZS' | 'VED' | 'VES' | 'VND' | 'VUV' | 'WST' | 'XAD' | 'XAF' | 'XCD' | 'XCG' | 'XOF' | 'XPF' | 'XSU' | 'XUA' | 'YER' | 'ZAR' | 'ZMW' | 'ZWG' — Default price currency of the product.
  - `is_price_exempt_from_vat` boolean — Is the default price exempt from VAT?
  - `is_price_inclusive_of_vat` boolean — [DEPRECATED] This field will be removed; non-exempt prices will be assumed inclusive.
  - `price_excluding_vat` string — [DEPRECATED] Default price excluding VAT. VAT will be calculated on invoice.
  - `vat_amount` string — [DEPRECATED] VAT amount for default price. VAT will be calculated on invoice.
  - `prices` ProductPriceInlineDto[] — All active prices for this product across different currencies.
    - `id` string, uuid4
    - `currency` 'SAR' | 'USD' | 'EUR' | 'GBP' | 'AED' | 'BHD' | 'KWD' | 'OMR' | 'QAR' — ISO 4217 currency codes supported by Moyasar. Includes all currencies supported by Moyasar payment gateway.
    - `amount` string
    - `is_active` boolean
    - `is_price_inclusive_of_vat` boolean — [DEPRECATED] This field will be removed; non-exempt prices will be assumed inclusive.
    - `is_price_exempt_from_vat` boolean
    - `price_excluding_vat` string — [DEPRECATED] Net amount excluding VAT. VAT will be calculated on invoice.
    - `vat_amount` string — [DEPRECATED] VAT amount. VAT will be calculated on invoice.
  - `is_active` boolean — Can this product be used in invoices or subscriptions?
  - `is_one_time` boolean — Shows if the product was created to be used once, and not to be added to product cataloge
  - `is_used_in_finalized_invoice` boolean — Is the product used in a finalized invoice?
  - `external_metadata` ExternalMetadataStorage

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/streampay/apis/stream-app.md) · [All operations](https://skmtc.dev/streampay/apis/stream-app/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/streampay/stream-app/revisions/515eeea7d260/schema)
