Create and Update Products

Upsert Product

post
Authorizations
Body
Responses
200
OK
application/json
post
POST /api/v1/products/ HTTP/1.1
Host: 
X-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 624

{
  "items": [
    {
      "style_key": "master_1",
      "sku": "my_sku_1",
      "ean": "1234567890123",
      "hs_code": "1234.56",
      "name": "Cap 'Gwendolyn'",
      "descriptions": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "color": 1,
      "size": 1,
      "second_size": 1,
      "brand": 1,
      "category": 1,
      "quantity": 100,
      "weight": 400,
      "countries": [
        "DE"
      ],
      "country_of_origin": "DE",
      "attributes": [
        1
      ],
      "material_composition_textile": [
        {
          "cluster_id": 1,
          "components": [
            {
              "material_id": 1,
              "fraction": 100
            }
          ]
        }
      ],
      "material_composition_non_textile": [
        {
          "cluster_id": 1,
          "components": [
            {
              "material_id": 1
            }
          ]
        }
      ],
      "prices": [
        {
          "country_code": "DE",
          "retail_price": 100,
          "sale_price": 80
        }
      ],
      "images": [
        "https://aboutyou.com/image_1500x2000.jpg"
      ]
    }
  ]
}
{
  "batchRequestId": "123e4567-e89b-12d3-a456-426614174000"
}

Last updated

Was this helpful?