---
title: "List resolution center cases"
method: GET
path: "/resolution_center_cases"
tags: ["Resolution center cases"]
---

# List resolution center cases

`GET /resolution_center_cases`

Returns a paginated list of resolution center cases, with optional filtering by company, status, and creation date.

Required permissions:
 - `payment:resolution_center_case:read`

## Query parameters

- `after` string, nullable — Returns the elements in the list that come after the specified cursor.
- `before` string, nullable — Returns the elements in the list that come before the specified cursor.
- `first` integer, nullable — Returns the first _n_ elements from the list.
- `last` integer, nullable — Returns the last _n_ elements from the list.
- `company_id` string, nullable — The unique identifier of the company to list resolution center cases for.
- `direction` 'asc' | 'desc' — The direction of the sort.
- `statuses` ResolutionCenterCaseStatuses[], nullable — Filter by resolution center case status.
- `created_before` string, date-time, nullable — Only return cases created before this timestamp.
- `created_after` string, date-time, nullable — Only return cases created after this timestamp.

## Response `200`

A successful response

- object — The connection type for PublicResolution.
  - `data` ResolutionCenterCaseListItem[], required — A list of nodes.
    - `company` object, nullable, required — The company involved in this resolution case. Null if the company no longer exists.
      - `id` string, required — The unique identifier for the company.
      - `title` string, required — The display name of the company shown to customers.
    - `created_at` string, date-time, required — The datetime the resolution was created.
    - `customer_appealed` boolean, required — Whether the customer has filed an appeal after the initial resolution decision.
    - `customer_response_actions` ResolutionCenterCaseCustomerResponses[], required — The list of actions currently available to the customer.
    - `due_date` string, date-time, nullable, required — The deadline by which the next response is required. Null if no deadline is currently active. As a Unix timestamp.
    - `id` string, required — The unique identifier for the resolution.
    - `issue` 'forgot_to_cancel' | 'item_not_received' | 'significantly_not_as_described' | 'unauthorized_transaction' | 'product_unacceptable', required — The different types of issues a resolution can be
    - `merchant_appealed` boolean, required — Whether the merchant has filed an appeal after the initial resolution decision.
    - `merchant_response_actions` ResolutionCenterCaseMerchantResponses[], required — The list of actions currently available to the merchant.
    - `payment` object, required — The payment record that is the subject of this resolution case.
      - `id` string, required — The unique identifier for the payment.
    - `status` 'merchant_response_needed' | 'customer_response_needed' | 'merchant_info_needed' | 'customer_info_needed' | 'under_platform_review' | 'customer_won' | 'merchant_won' | 'customer_withdrew', required — The statuses a resolution object can have
    - `updated_at` string, date-time, required — The datetime the resolution was last updated.
    - `user` object, required — The customer (buyer) who filed this resolution case.
      - `id` string, required — The unique identifier for the user.
      - `name` string, nullable, required — The user's display name shown on their public profile.
      - `username` string, required — The user's unique username shown on their public profile.
  - `page_info` PageInfo, required — Information about pagination in a connection.
    - `end_cursor` string, nullable, required — When paginating forwards, the cursor to continue.
    - `has_next_page` boolean, required — When paginating forwards, are there more items?
    - `has_previous_page` boolean, required — When paginating backwards, are there more items?
    - `start_cursor` string, nullable, required — When paginating backwards, the cursor to continue.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

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