Skip to main content
GET
/
v1
/
cancellation_acts
List
curl --request GET \
  --url https://{defaultHost}/v1/cancellation_acts \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/cancellation_acts"
  },
  "data": [
    {
      "id": "25c68939-b07f-4b69-9750-78a1c6d65d09",
      "object": "cancellation_act",
      "comment": null,
      "coupon_applied": false,
      "preserved": false,
      "performed_at": 1767909675,
      "cancellation_reason": "eac835bf-c51f-47f1-bc37-ab46ac63b178",
      "subscription": "2b9145be-a80c-4992-b960-8bd93c631fe0",
      "created_at": 1767909675,
      "updated_at": 1767909675
    }
  ]
}

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.

live_mode
boolean

Only return objects that are live mode or test mode.

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.