v1
latestOpenAPI 3.0.22026-07-223907721.1 MBOffer
Stock Updates
Stock Updates (All Sellers)
This endpoint retrieves all stock updates across all sellers for a channel. It provides a comprehensive view of inventory changes from all sellers associated with the authenticated channel.
This endpoint is ideal for:
- Periodic synchronization: Regularly poll for stock updates across all sellers to keep inventory in sync
- Incremental updates: Use the updatedAfter parameter with the previous lastUpdatedAt value to fetch only new changes
This API endpoint has a stricter rate limit.
get/v1/channel/offer/stock-updates/all
Query parameters
updatedAfterstring date-time required
Filters stock updates to return only those modified after the specified date and time.
Response
Successful response with stock updates from all sellers
Example response
{
"stockUpdateList": [
{
"sellerId": "4711",
"offerId": 5437233,
"channelOfferId": "XCD233554",
"quantity": 1,
"updatedAt": "2025-12-29T14:13:06+00:00"
}
],
"lastUpdatedAt": "2025-12-29T14:13:06+00:00"
}