---
title: "List Member Disputes"
method: GET
path: "/v1/disputes/list"
tags: ["Disputes"]
---

# List Member Disputes

`GET /v1/disputes/list`

Returns a paginated list of disputes for a given customer. Each entry includes the dispute short ID, total disputed amount, and open/closed status. Does not include transaction-level detail — use GetDisputeStatus for full detail on a specific dispute. Default: 10 most recent disputes; maximum: 30 per request; limited to the last 6 months.

## Query parameters

- `customerUuid` string
- `pageSize` integer
- `pageToken` string
- `statusFilter` 'DISPUTE_STATUS_UNKNOWN' | 'DISPUTE_STATUS_OPEN' | 'DISPUTE_STATUS_CLOSED'

## Response `200`

A successful response.

- V1ListMemberDisputesResponse
  - `disputes` DtoDisputeListItem[]
    - `disputeUuid` string
    - `shortId` string
    - `disputedAmount` ApiPublicdtoAmount
      - `amountInCents` integer
      - `currency` string
    - `status` 'DISPUTE_STATUS_UNKNOWN' | 'DISPUTE_STATUS_OPEN' | 'DISPUTE_STATUS_CLOSED'
    - `createdAt` string, int64
  - `nextPageToken` string
  - `totalCount` integer

## Other responses

- `default` — An unexpected error response.

---

[API](https://skmtc.net/casaphq/apis/casap-api.md) · [All operations](https://skmtc.net/casaphq/apis/casap-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/casaphq/casap-api/versions/301b634ab50b/schema)
