Resolution Center Cases

List Resolution Center Cases

Lists resolution center cases. Without account_id you get every case you can read — the ones you opened as a buyer and every account you are a team member of; the filters narrow that list.

get/resolution_center_cases

Query parameters

account_idstring

Only cases filed against this account (biz_ tag). With read access to the account this lists its whole queue; without, only the cases you opened against it.

user_idstring

Only cases opened by this customer — a user_ tag, or me for the calling user. It narrows what you can already read, so me lists the cases you opened without the ones on accounts you are a team member of.

firstinteger

Number of results to return from the start of the range.

afterstring

Return results after this cursor. Use page_info.end_cursor from the previous response to fetch the next page.

lastinteger

Number of results to return from the end of the range.

beforestring

Return results before this cursor. Use page_info.start_cursor from the previous response to fetch the previous page.

order'created_at' | 'response_due_at'

The field to sort cases by.

direction'asc' | 'desc'

Sort direction.

statusstring[]

Only cases in these statuses. Repeat the parameter to pass several — one paginated list covers all of them.

[
  "awaiting_merchant"
]
reasonstring[]

Only cases opened for these reasons. Repeat the parameter to pass several.

[
  "fraudulent"
]
outcomestring[]

Only closed cases that ended these ways. Repeat the parameter to pass several.

[
  "customer_won"
]
created_beforestring

Only cases created before this ISO 8601 timestamp.

created_afterstring

Only cases created after this ISO 8601 timestamp.

Headers

Api-Version-Datestring
Example:2026-09-25

Pins the request to a dated API version.

Response

cases listed

Example response

{
  "data": [
    {
      "account": {
        "id": "biz_xxxxxxxxxxxxxx",
        "title": "Shine Time Auto Detailing"
      },
      "amount": 249,
      "available_actions": [
        "accept"
      ],
      "buyer": {
        "email": "marcus@shinetime.example",
        "member_id": "mber_xxxxxxxxxxxxxx",
        "name": "Dana Whitfield",
        "user_id": "user_xxxxxxxxxxxxxx",
        "username": "danawhitfield"
      },
      "created_at": "2026-01-01T12:00:00.000Z",
      "currency": "usd",
      "id": "reso_xxxxxxxxxxxxxx",
      "line_items": [
        {
          "id": "li_xxxxxxxxxxxxxx",
          "label": "Ceramic Coating Package",
          "plan_id": "plan_xxxxxxxxxxxxxx",
          "plan_title": "Ceramic Coating — Full Vehicle",
          "product_id": "prod_xxxxxxxxxxxxxx",
          "product_title": "Ceramic Coating Package",
          "quantity": 1,
          "subtotal": {
            "amount": "-2.50",
            "currency": "usd",
            "decimals": 2,
            "display_decimals": 2
          }
        }
      ],
      "outcome": "merchant_won",
      "payment": {
        "card_brand": "visa",
        "card_last4": "4242",
        "created_at": "2026-01-01T12:00:00.000Z",
        "id": "pay_xxxxxxxxxxxxxx",
        "payment_method_type": "card"
      },
      "plan_id": "plan_xxxxxxxxxxxxxx",
      "product_id": "prod_xxxxxxxxxxxxxx",
      "reason": "product_not_received",
      "refund": "none",
      "response_due_at": "2026-01-01T12:00:00.000Z",
      "status": "closed",
      "updated_at": "2026-01-01T12:00:00.000Z"
    }
  ],
  "page_info": {
    "start_cursor": "WyJjdXJzb3IiLDFd"
  }
}

Changes

Changed in 5 of the 74 revisions of this API.121450

  • ff3a7657356312See the full diff
    • ▲

      for the query request parameter first, default value 20 was added

      request-parameter-default-value-added

    • ●

      for the query request parameter first, the max was set to 100.00

      request-parameter-max-set

    • ●

      for the query request parameter last, the max was set to 100.00

      request-parameter-max-set

    • ○

      added the required property //// to the response with the status

      response-required-property-added

    • ○

      added the required property //// to the response with the status

      response-required-property-added

    • ○

      added the required property //// to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the optional property / to the response with the status

      response-optional-property-added

    • ○

      added the optional property / to the response with the status

      response-optional-property-added

    • ○

      added the optional property / to the response with the status

      response-optional-property-added

    This revision also has 9 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 099fdc3be422111243See the full diff
    • ▲

      the query request parameter direction was restricted to a list of enum values

      request-parameter-became-enum

    • ▲

      for the query request parameter direction, default value desc was added

      request-parameter-default-value-added

    • ▲

      the // response's property format changed from date-time to no format for status

      response-property-type-changed

    • ▲

      the // response's property format changed from date-time to no format for status

      response-property-type-changed

    • ▲

      removed the required property // from the response with the status

      response-required-property-removed

    • ▲

      removed the required property // from the response with the status

      response-required-property-removed

    • ▲

      removed the required property // from the response with the status

      response-required-property-removed

    • ▲

      removed the required property // from the response with the status

      response-required-property-removed

    • ▲

      removed the required property // from the response with the status

      response-required-property-removed

    • ▲

      removed the required property // from the response with the status

      response-required-property-removed

    • ▲

      removed the required property // from the response with the status

      response-required-property-removed

    • ●

      deleted the query request parameter company_id

      request-parameter-removed

    • ●

      deleted the query request parameter statuses

      request-parameter-removed

    • ●

      removed the optional property / from the response with the status

      response-optional-property-removed

    • ●

      removed the optional property / from the response with the status

      response-optional-property-removed

    • ●

      removed the optional property / from the response with the status

      response-optional-property-removed

    • ●

      removed the optional property / from the response with the status

      response-optional-property-removed

    • ●

      removed the optional property / from the response with the status

      response-optional-property-removed

    • ●

      removed the optional property / from the response with the status

      response-optional-property-removed

    • ●

      added the new awaiting_customer enum value to the // response property for the response status

      response-property-enum-value-added

    • ●

      added the new awaiting_merchant enum value to the // response property for the response status

      response-property-enum-value-added

    • ●

      added the new closed enum value to the // response property for the response status

      response-property-enum-value-added

    • ●

      added the new under_review enum value to the // response property for the response status

      response-property-enum-value-added

    • ○

      api operation id listResolutionCenterCase removed and replaced with listResolutionCenterCases

      api-operation-id-removed

    • ○

      api tag Resolution Center Cases added

      api-tag-added

    • ○

      api tag Resolution center cases removed

      api-tag-removed

    • ○

      added the new optional header request parameter Api-Version-Date

      new-optional-request-parameter

    • ○

      added the new optional query request parameter account_id

      new-optional-request-parameter

    • ○

      added the new optional query request parameter order

      new-optional-request-parameter

    • ○

      added the new optional query request parameter outcome

      new-optional-request-parameter

    • ○

      added the new optional query request parameter reason

      new-optional-request-parameter

    • ○

      added the new optional query request parameter status

      new-optional-request-parameter

    • ○

      added the new optional query request parameter user_id

      new-optional-request-parameter

    • ○

      added the new enum value asc to the query request parameter direction

      request-parameter-enum-value-added

    • ○

      added the new enum value desc to the query request parameter direction

      request-parameter-enum-value-added

    • ○

      for the query request parameter created_after, the type was generalized from string null to string, and format from date-time to no format

      request-parameter-type-generalized

    • ○

      for the query request parameter created_before, the type was generalized from string null to string, and format from date-time to no format

      request-parameter-type-generalized

    • ○

      for the query request parameter direction, the type was generalized from no type to string

      request-parameter-type-generalized

    • ○

      removed the non-success response with the status

      response-non-success-status-removed

    • ○

      removed the non-success response with the status

      response-non-success-status-removed

    • ○

      removed the non-success response with the status

      response-non-success-status-removed

    • ○

      removed the non-success response with the status

      response-non-success-status-removed

    • ○

      removed the customer_info_needed enum value from the // response property for the response status

      response-property-enum-value-removed

    • ○

      removed the customer_response_needed enum value from the // response property for the response status

      response-property-enum-value-removed

    • ○

      removed the customer_withdrew enum value from the // response property for the response status

      response-property-enum-value-removed

    • ○

      removed the customer_won enum value from the // response property for the response status

      response-property-enum-value-removed

    • ○

      removed the merchant_info_needed enum value from the // response property for the response status

      response-property-enum-value-removed

    • ○

      removed the merchant_response_needed enum value from the // response property for the response status

      response-property-enum-value-removed

    • ○

      removed the merchant_won enum value from the // response property for the response status

      response-property-enum-value-removed

    • ○

      removed the under_platform_review enum value from the // response property for the response status

      response-property-enum-value-removed

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property /// to the response with the status

      response-required-property-added

    • ○

      added the required property /// to the response with the status

      response-required-property-added

    • ○

      added the required property /// to the response with the status

      response-required-property-added

    • ○

      added the required property /// to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    This revision also has 4 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

Of the 74 revisions, 1 has no diff computed.