---
title: "listSupportCases"
description: "List support cases"
canonical: "https://pgbeam.com/docs/ts-sdk/support/listSupportCases"
last-updated: "2026-09-14T19:37:21.000Z"
---

# listSupportCases

> List support cases

URL: https://pgbeam.com/docs/ts-sdk/support/listSupportCases

Lists support cases for the organization with optional status and search filters.

## Usage

## Parameters

Parameter

Type

Required

Description

pathParams.org\_id

`string`

Yes

Unique organization identifier.

queryParams.status

`SupportCaseStatus`

No

Filter by case status.

queryParams.search

`string`

No

Search cases by title.

queryParams.page\_size

`number`

No

Number of results per page (1-100, default 20).

queryParams.page\_token

`string`

No

Opaque token for cursor-based pagination.

queryParams.page

`number`

No

Page number (1-based, default 1).

## Response

`Promise<ListSupportCasesResponse>`: list of support cases.

## Example

## Errors

Status

Description

400

The request was rejected. `code` is `INVALID_INPUT`, and `errors` names the offending fields when the failure was a validation one.

401

Missing or invalid authentication. `code` is `UNAUTHORIZED`.

403

The caller is authenticated but not allowed to perform this operation. `code` is `FORBIDDEN` when the caller's role is insufficient, and `PLAN_LIMIT_REACHED` when the organization's plan is what stands in the way. The two are answered differently, so branch on the code rather than the status.

500

The request failed for a reason on our side. `code` is `INTERNAL_ERROR`. Quote `request_id` when reporting it.