List Promotions
GET/api/walmart/:integrationInstance/promotions
List every promotional price recorded for a Walmart integration instance, most recent first.
integrations:readGrant this scope to your token under Settings → Developer → Personal Access Tokens.
Prices and costs are snapshots taken when the promotion was submitted, so discount_pct and margin_pct report what the promotion actually carried rather than a figure recomputed from a catalogue that has moved since.
display_status is the merchant-facing state, derived from the promotion's window and what Walmart said: pending (submitted, Walmart still ingesting), scheduled, live, ending_soon (within two days of the end date), ended, rejected, cancelled. status is the underlying lifecycle — pending, accepted, rejected, cancelled — which is what tells a promotion that simply ran its course apart from one that was ended early.
Filter with filter[outstanding]=1 for promotions that are still running, scheduled or submitting — the working view. filter[guardrail_breached]=1 returns the ones whose promotional price broke a price guardrail.
Allowed sorts: id, channel_sku, list_price, promo_price, discount_pct, margin_pct, display_status, effective_date, expiration_date, created_at, updated_at. Prefix with - for descending.
Authentication: Requires Bearer token.
Requires the integrations.view permission.
Request
Responses
- 200
- 401
- 403
- 404
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.