These docs are for v1.38.0. Click to read the latest docs for v1.39.0.

v1.16.0 (Deprecated)

Modified Inputs

GET /stores/:storeKey/inventory/search - Removed offset parameter

Modified Returns

All error conditions should now be wrapped in the standard response envelope. For example, making a request with an invalid or missing bearer token used to return this JSON:
{
"message": "Authorization has been denied for this request."
}

It will now return the following:
{
"success": false,
"errors": [
"Missing or invalid bearer token."
],
"results": []
}

Added cleanProductName to the result for the following endpoints:
GET /catalog/products
GET /catalog/products/{productIds}
GET /catalog/products/gtin/{gtin}
GET /stores/:storeKey/inventory/search - Removed totalItems attribute