Adjust product stock
PUT
https://app.ecwid.com/api/v3/{storeId}/products/{productId}/inventory
Required access scopes
Your app must have the following access scopes to make this request: update_catalog
Path params
All path params are required.
storeId
number
Ecwid store ID.
productId
number
Internal product ID.
Query params
All query params are optional.
checkLowStockNotification
boolean
Defines if Ecwid should check the quantity of product stock and send the low stock email notification to the store owner.
Headers
The Authorization header is required.
Authorization
Bearer secret_ab***cd
Access token of the application.
Request JSON
A JSON object with the following fields:
quantityDelta
number
The quantity value for updating product quantity. Positive value increases product stock, a negative one decreases it.
For example, 5
adds 5 to the product stock, and -10
decreases it for 10.
Response JSON
A JSON object with the following fields:
updateCount
number
The number of updated items that defines if the request was successful. One of:
1
if the item was updated,
0
if the item was not updated.
warning
string
Inventory update warning displayed if the product stock became negative after the request.
Last updated
Was this helpful?