Get Product Batch Results

Get Product Batch Results

get
Authorizations
Query parameters
batch_request_idstring · uuidRequired
Responses
200
OK
application/json
get
GET /api/v1/results/products?batch_request_id=123e4567-e89b-12d3-a456-426614174000 HTTP/1.1
Host: 
X-API-Key: YOUR_API_KEY
Accept: */*
{
  "batchRequestId": "123e4567-e89b-12d3-a456-426614174000",
  "status": "completed",
  "items": [
    {
      "requestItem": {
        "style_key": "master_1",
        "sku": "my_sku_1",
        "ean": "1234567890123",
        "hs_code": "1234.56",
        "name": "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"
        ]
      },
      "success": true,
      "errors": [
        "Could not complete operation due to..."
      ]
    }
  ]
}

Last updated

Was this helpful?