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": "5b561abd-5979-4d73-81f9-edeec5216067",
      "object": "checkout_fee",
      "amount": 0,
      "description": "SweetPromotion389642",
      "fee_type": "manual",
      "checkout": "8e68e5a2-25ed-405b-8926-60bfbd7be756",
      "created_at": 1767909678,
      "updated_at": 1767909678
    }
  ]
}

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.