---
title: "Stock Updates (All Sellers)"
method: GET
path: "/v1/channel/offer/stock-updates/all"
tags: ["Offer", "Stock Updates"]
---

# Stock Updates (All Sellers)

`GET /v1/channel/offer/stock-updates/all`

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.

## Query parameters

- `updatedAfter` string, date-time, required

## Response `200`

Successful response with stock updates from all sellers

- StockList — Response containing a list of stock updates and the timestamp of the last update
  - `stockUpdateList` Stock[], required — List of stock update objects containing inventory changes
    - `sellerId` string, required — A unique Id identify a Seller on a specific SalesChannel. The SellerId is generated from the Channel itself during the Seller SignUp Process.
    - `offerId` integer, required — Unique Offer Id to identify an Offer on a Sales Channel.
    - `channelOfferId` string, required — Channel defined unique Offer Id to identify an Offer on a Sales Channel.
    - `quantity` integer, required — Current stock quantity for this offer
    - `updatedAt` string, date-time, required — ISO 8601 timestamp when this stock update occurred
  - `lastUpdatedAt` string, date-time, required — ISO 8601 timestamp indicating the lastest date of stock updates in the current list. Use this value as the `updatedAfter` parameter in subsequent requests to fetch only new stock updates.

## Other responses

- `400` — Bad Request
- `401` — Access forbidden, invalid or unknown Token was used.
- `500` — Unexpected Server Error

---

[API](https://skmtc.net/jtl-software/apis/scx-authentication-api.md) · [All operations](https://skmtc.net/jtl-software/apis/scx-authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/jtl-software/scx-authentication-api/revisions/f979b1ea6951/schema)
