Create and manage e-commerce products for one-time purchases.
Overview
E-commerce products represent physical or digital goods available for one-time purchase. Products can have multiple SKUs (variants) with different prices, currencies, and inventory levels.
Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /ecommerce/products | List products |
GET | /ecommerce/products/{id} | Get product |
POST | /ecommerce/products | Create product |
PUT | /ecommerce/products/{id} | Update product |
DELETE | /ecommerce/products/{id} | Delete product |
Product object
| Attribute | Type | Description |
|---|---|---|
id | integer | Unique identifier |
name | string | Product name (3–250 chars) |
caption | string | Short caption |
description | string | Full description (max 1500 chars) |
shippable | boolean | Whether the product requires shipping |
countries | array | Country codes where the product is available |
image | string | Product image URL |
sites | array | Array of site IDs where the product is listed |

