Get Price Batch Results
Authorizations
Query parameters
batch_request_idstring · uuidRequired
Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
get
GET /api/v1/results/prices?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": {
"sku": "my_sku_1",
"price": {
"country_code": "DE",
"retail_price": 100,
"sale_price": 80
}
},
"success": true,
"errors": [
"Could not complete operation due to..."
]
}
]
}
Last updated
Was this helpful?