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

# Create Products

`POST /ecommerce/products`

Create Products in any supported Ecommerce software

## Query parameters

- `remote_data` boolean

## Headers

- `x-connection-token` string, required

## Request body

- UnifiedEcommerceProductInput
  - `product_url` string, nullable — The URL of the product
  - `product_type` string, nullable — The type of the product
  - `product_status` string, nullable — The status of the product. Either ACTIVE, DRAFT OR ARCHIVED.
  - `images_urls` string[], nullable — The URLs of the product images
  - `description` string, nullable — The description of the product
  - `vendor` string, nullable — The vendor of the product
  - `variants` Variant[] — The variants of the product
  - `tags` string[], nullable — The tags associated with the product
  - `field_mappings` object, nullable — The custom field mappings of the object between the remote 3rd party & Panora

## Response `201`

- UnifiedEcommerceProductOutput
  - `product_url` string, nullable — The URL of the product
  - `product_type` string, nullable — The type of the product
  - `product_status` string, nullable — The status of the product. Either ACTIVE, DRAFT OR ARCHIVED.
  - `images_urls` string[], nullable — The URLs of the product images
  - `description` string, nullable — The description of the product
  - `vendor` string, nullable — The vendor of the product
  - `variants` Variant[] — The variants of the product
  - `tags` string[], nullable — The tags associated with the product
  - `field_mappings` object, nullable — The custom field mappings of the object between the remote 3rd party & Panora
  - `id` string, nullable — The UUID of the product
  - `remote_id` string, nullable — The remote ID of the product in the context of the 3rd Party
  - `remote_data` object, nullable — The remote data of the customer in the context of the 3rd Party
  - `created_at` string, nullable — The created date of the object
  - `modified_at` string, nullable — The modified date of the object

## Changes

- **2024-08-27** `5ba5c769e2e1` — 3 breaking, 3 info
  - removed the enum value `ACTIVE` of the request property `product_status`
  - removed the enum value `ARCHIVED` of the request property `product_status`
  - removed the enum value `DRAFT` of the request property `product_status`
  - removed the `ACTIVE` enum value from the `product_status` response property for the response status `201`
  - …2 more
- **2024-08-07** `bcedd35abe69` — 14 breaking, 3 warning, 11 info
  - request property `product_status` was restricted to a list of enum values
  - the response property `created_at` became nullable for the status `201`
  - the response property `description` became nullable for the status `201`
  - the response property `field_mappings` became nullable for the status `201`
  - …24 more

[Change history](https://skmtc.dev/panoratech/apis/panora-api/changes/ecommerce/products/post.md)

---

[API](https://skmtc.dev/panoratech/apis/panora-api.md) · [All operations](https://skmtc.dev/panoratech/apis/panora-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/panoratech/panora-api/revisions/318082b88074/schema)
