Update Bulk Quantities by SKU
DeprecatedPOST
/products/quantities/bulkSkusThis endpoint allows you to update unlimited bulk quantities by providing the SKUs of the products you want to update their quantity as aquery parameter.
:::warning Important
As this endpoint is to be deprecated soon, it is recommended to adapt using the Update Bulk Quantities endpoint
:::
Request
The Product SKU. List of Product SKU can be found here.
New quantity required if
unlimited_quantity = false
Show if this product has unlimited quantity or not
{
"skus": [
{
"sku": "IPHONE-XL-PLUS",
"quantity": 5
},
{
"sku": "ASUS-Selfie",
"quantity": 12
}
]
}
Request samples
[api.label.responses]
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
A text or data communication generated by a system or application in response to a request.
A numerical or alphanumeric identifier used in various systems and protocols to indicate the status or outcome of a specific request.
{
"success": true,
"status": 201,
"error": {
"code": 201,
"message": "The details has been updated successfully"
}
}