---
title: "List Refunds"
method: GET
path: "/v1/refunds/"
tags: ["refunds", "public"]
---

# List Refunds

`GET /v1/refunds/`

List refunds.

**Scopes**: `refunds:read` `refunds:write`

## Query parameters

- `id` union — Filter by refund ID.
  - string, uuid4 — The refund ID.
  - string[]
- `organization_id` union — Filter by organization ID.
  - string, uuid4 — The organization ID.
  - string[]
- `order_id` union — Filter by order ID.
  - string, uuid4 — The order ID.
  - string[]
- `subscription_id` union — Filter by subscription ID.
  - string, uuid4 — The subscription ID.
  - string[]
- `customer_id` union — Filter by customer ID.
  - string, uuid4 — The customer ID.
  - string[]
- `external_customer_id` union — Filter by customer external ID.
  - string — The customer external ID.
  - string[]
- `succeeded` boolean, nullable — Filter by `succeeded`.
- `page` integer — Page number, defaults to 1.
- `limit` integer — Size of a page, defaults to 10. Maximum is 100.
- `sorting` RefundSortProperty[], nullable — Sorting criterion. Several criteria can be used simultaneously and will be applied in order. Add a minus sign `-` before the criteria name to sort by descending order.

## Response `200`

Successful Response

- ListResourceRefund
  - `items` Refund[], required
    - `created_at` string, date-time, required — Creation timestamp of the object.
    - `modified_at` string, date-time, nullable, required — Last modification timestamp of the object.
    - `id` string, uuid4, required — The ID of the object.
    - `metadata` MetadataOutputType, required
    - `status` 'pending' | 'succeeded' | 'failed' | 'canceled', required
    - `reason` 'duplicate' | 'fraudulent' | 'customer_request' | 'service_disruption' | 'satisfaction_guarantee' | 'dispute_prevention' | 'other', required
    - `amount` integer, required
    - `tax_amount` integer, required
    - `currency` string, required
    - `organization_id` string, uuid4, required
    - `order_id` string, uuid4, required
    - `subscription_id` string, uuid4, nullable, required
    - `customer_id` string, uuid4, required
    - `revoke_benefits` boolean, required
    - `dispute` RefundDispute, required — Dispute associated with a refund, in case we prevented a dispute by issuing a refund.
      - `created_at` string, date-time, required — Creation timestamp of the object.
      - `modified_at` string, date-time, nullable, required — Last modification timestamp of the object.
      - `id` string, uuid4, required — The ID of the object.
      - `status` 'prevented' | 'early_warning' | 'needs_response' | 'under_review' | 'lost' | 'won', required
      - `resolved` boolean, required — Whether the dispute has been resolved (won or lost).
      - `closed` boolean, required — Whether the dispute is closed (prevented, won, or lost).
      - `amount` integer, required — Amount in cents disputed.
      - `tax_amount` integer, required — Tax amount in cents disputed.
      - `currency` string, required — Currency code of the dispute.
      - `reason` string, nullable, required — The reason for the dispute as reported by the card network (e.g. `fraudulent`, `product_not_received`). `None` until the processor reports it.
      - `evidence_due_by` string, date-time, nullable, required — Deadline to submit evidence in response to the dispute. `None` when no response is required.
      - `past_due` boolean, required — Whether the evidence submission deadline has passed.
      - `order_id` string, uuid4, required — The ID of the order associated with the dispute.
      - `payment_id` string, uuid4, required — The ID of the payment associated with the dispute.
  - `pagination` Pagination, required
    - `total_count` integer, required
    - `max_page` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/polar/apis/polar-api.md) · [All operations](https://skmtc.net/polar/apis/polar-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/polar/polar-api/revisions/1ee4b8be5abd/schema)
