Skip to main content
GET
/
checkout_configurations
List checkout configurations
curl --request GET \
  --url https://{defaultHost}/checkout_configurations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "created_at": 123,
      "updated_at": 123,
      "company_id": "<string>",
      "currency": "<string>",
      "plan": {},
      "affiliate_code": "<string>",
      "metadata": {},
      "redirect_url": "<string>",
      "purchase_url": "<string>",
      "three_ds_level": "<string>",
      "payment_method_configuration": {}
    }
  ],
  "page_info": {
    "end_cursor": "<string>",
    "start_cursor": "<string>",
    "has_next_page": true,
    "has_previous_page": true
  }
}

Authorizations

Authorization
string
header
required

An account API key, account scoped JWT, app API key, or user OAuth token.

Headers

Api-Version-Date
string<date>

Pins the request to a dated API version. When omitted, the request uses the original (2025-01-01) request/response shapes, so existing unversioned callers are never broken. Generated SDKs always send the latest version they were built against. An unrecognized value is rejected with a 400. The schemas documented here always describe the latest version.

Example:

"2026-06-09"

Query Parameters

company_id
string
required

The ID of the company to list checkout configurations for.

plan_id
string

Filter by plan ID.

created_before
integer

Filter to configurations created before this Unix timestamp.

created_after
integer

Filter to configurations created after this Unix timestamp.

direction
string

Sort direction: asc or desc. Defaults to desc.

first
integer

Number of results to return (forward pagination).

after
string

Cursor for forward pagination.

Response

checkout configurations listed

data
object[]
required
page_info
object
required