---
title: "List subscription changes"
method: GET
path: "/subscription_changes"
tags: ["Subscription Change"]
---

# List subscription changes

`GET /subscription_changes`

This endpoint returns a list of pending subscription changes for a customer. Use the
[Fetch Subscription Change](fetch-subscription-change) endpoint to retrieve the expected subscription state
after the pending change is applied.

## Query parameters

- `limit` integer — The number of items to fetch. Defaults to 20.
- `cursor` string, nullable — Cursor for pagination. This can be populated by the `next_cursor` value returned from the initial request.
- `customer_id` string, nullable
- `external_customer_id` string, nullable
- `status` 'pending' | 'applied' | 'cancelled', nullable

## Response `200`

OK

- SubscriptionChangeListResponses
  - `data` SubscriptionChangeListResponse[], required
    - `id` string, required
    - `status` 'pending' | 'applied' | 'cancelled', required
    - `applied_at` string, date-time, nullable — When this change was applied.
    - `cancelled_at` string, date-time, nullable — When this change was cancelled.
    - `expiration_time` string, date-time, required — Subscription change will be cancelled at this time and can no longer be applied.
    - `subscription_id` string, nullable, required
  - `pagination_metadata` PaginationMetadata, required
    - `has_more` boolean, required
    - `next_cursor` string, nullable, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `409` — Conflict
- `413` — Content Too Large
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.dev/withorb/apis/api-reference.md) · [All operations](https://skmtc.dev/withorb/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/withorb/api-reference/revisions/816dfe734e2e/schema)
