Create product

Creates a new product within your product catalog.

👍

How to use this endpoint

  • Required parameters are listed below. For the full list of properties, see About products.
  • For example requests of full and minimal payload, see below.

Example requests

{
  "product": {
    "external_id": "ak123798684325sdfkj",
    "name": "minimal surfboard",
    "description": "A great surfboard!",
    "status": "active",
    "url": "http://www.waverider.com/products/minimalsurfboard",
    "image_url": "http://www.waverider.com/products/minimalsurfboard/images/1.jpg",
    "price": 750,
    "compare_at_price": 800,
    "currency": "USD",
    "inventory_quantity": 10,
    "is_discontinued": false,
    "group_name": "surfboards",
    "brand": "Waverider",
    "sku": "xxxxx",
    "mpn": "xxxxx", 
    "gtins": [
      {
        "declared_type": "UPC",
        "value": "742833102466"
      },
      {
        "declared_type": "EAN",
        "value": "5057913274083"
      }
    ],
    "custom_properties": {
      "is_blocklisted": true,
      "review_form_tag": "surfboard"     
    }
  }
}
{
  "product": {
    "external_id": "ak123798684325sdfkj",
    "name": "minimal surfboard",
    "description": "A great surfboard!",
    "url": "http://www.waverider.com/products/minimalsurfboard",
    "price": 750,
    "sku": "xxxxx"
  }
}
Language