Skip to main content
GET
/
v1
/
checkout_fees
List
curl --request GET \
  --url https://{defaultHost}/v1/checkout_fees \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/checkout_fees"
  },
  "data": [
    {
      "id": "8a781576-75a1-4128-8dbf-847d6212500f",
      "object": "checkout_fee",
      "amount": 0,
      "description": "CoolSale405528",
      "fee_type": "manual",
      "checkout": "8804e94f-566d-4a71-b53d-db6b31a0c4d0",
      "created_at": 1771429853,
      "updated_at": 1771429853
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.