Products

Create product

Create a new product.

post/v1/products

Request body

OR
OR
OR
OR

Example request

{
  "name": "Product name",
  "description": "Product internal description",
  "public_description": "Product public description",
  "price_configurations": [
    {
      "currency": "EUR",
      "country": "FR"
    }
  ]
}

Response

The newly created product

OR
OR
OR
ProductCredit required— unresolved $ref
OR

Example response

{
  "id": "itm_3kXODDF42QXtnL",
  "name": "Product name",
  "status": "active",
  "description": "Product internal description",
  "public_description": "Product public description",
  "integrations": [
    {
      "entity_id": "123456789",
      "provider_name": "stripe",
      "provider_account_id": "acc_1234567890"
    }
  ],
  "is_available_on_demand": true,
  "is_available_on_subscription": true,
  "price_configurations": [
    {
      "status": "active",
      "currency": "EUR",
      "country": "FR"
    }
  ]
}

Changes