Resolution center cases

List 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
get/resolution_center_cases

Query parameters

afterstring nullable

Returns the elements in the list that come after the specified cursor.

beforestring nullable

Returns the elements in the list that come before the specified cursor.

firstinteger nullable

Returns the first n elements from the list.

Example:42
lastinteger nullable

Returns the last n elements from the list.

Example:42
company_idstring nullable

The unique identifier of the company to list resolution center cases for.

Example:biz_xxxxxxxxxxxxxx
direction'asc' | 'desc'

The direction of the sort.

statusesResolutionCenterCaseStatuses[] nullable

Filter by resolution center case status.

created_beforestring date-time nullable

Only return cases created before this timestamp.

Example:2023-12-01T05:00:00.401Z
created_afterstring date-time nullable

Only return cases created after this timestamp.

Example:2023-12-01T05:00:00.401Z

Response

A successful response

Example response

{
  "data": [
    {
      "company": {
        "id": "biz_xxxxxxxxxxxxxx",
        "title": "Pickaxe"
      },
      "created_at": "2023-12-01T05:00:00.401Z",
      "due_date": "2023-12-01T05:00:00.401Z",
      "id": "reso_xxxxxxxxxxxxx",
      "payment": {
        "id": "pay_xxxxxxxxxxxxxx"
      },
      "updated_at": "2023-12-01T05:00:00.401Z",
      "user": {
        "id": "user_xxxxxxxxxxxxx",
        "name": "John Doe",
        "username": "johndoe42"
      }
    }
  ]
}

Changes