Sign in

Create product

documented

Create a new product in the catalog.

POST /api/v3/{storeId}/productsProductsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://app.ecwid.com/api/v3/{{$storeId}}/products" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"sku": "{{$sku}}", "name": "{{$name}}", "price": {{$price}}, "quantity": {{$quantity}}, "description": "{{$description}}", "categoryIds": [{{$category_id}}] }'
Create product · Ecwid · OpenIntegrations