Skip to content

Suggested

API Dashboard
GET /checkout-sessions

Lists checkout sessions with filtering and pagination options.

GET/checkout-sessions
Get Checkout sessions

Bearer access token returned by the authentication endpoint.

v1: empty ; v2: 24-04-2025

Defaultnone, is the first API version

The API key used for authentication when making requests to the API Gateway.

Identifies the application making the request.

Owner Identity Id

Destination Account Number

Checkout session status

(dd/mm/yyyy) Start date filters created Date min

(dd/mm/yyyy) End date filters created Date max

Sorts the results by param:asc | param:desc

Specifies the maximum number of items to return in a single request.

Skips the input value from the current view

paginationobjectrequired

Cursor-based pagination metadata (limit, cursor, hasMore).

resultsobject[]required

Items from the current page

Request
GET /sandbox/checkout-sessions HTTP/1.1
Host: api.conomyhq.com
Authorization: Bearer {ACCESS_TOKEN}
conomyhq-api-version: 24-04-2025
x-api-key: {YOUR_API_KEY}
User-Agent: MyApp/1.0
Response
{
  "pagination": {
    "count": 0,
    "next": 0,
    "previous": 0,
    "total": 0
  },
  "results": [
    {
      "id": "string",
      "paymentConfigs": [
        null
      ],
      "createdAt": "2024-01-15T10:30:00.000Z",
      "status": "ATTEMPT",
      "items": [
        null
      ],
      "currency": "string",
      "preTaxAmount": "string",
      "totalAmount": "string",
      "url": "string",
      "paymentMethodsAllowed": [
        null
      ]
    }
  ]
}