GET
/
v1
/
transactions
List transactions
curl --request GET \
  --url https://api.kajabi.com/v1/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "action": "<string>",
        "state": "<string>",
        "payment_type": "<string>",
        "amount_in_cents": 123,
        "sales_tax_in_cents": 123,
        "currency": "<string>",
        "currency_symbol": "<string>",
        "formatted_amount": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      },
      "relationships": {
        "customer": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        },
        "offer": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        }
      }
    }
  ],
  "links": {
    "self": "<string>",
    "current": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page[number]
number
page[size]
number

Number of documents

fields[transactions]
string

Partial attributes as specified, e.g. fields[transactions]=amount_in_cents,sales_tax_in_cents

filter[site_id]
string

Filter by site_id, for example ?filter[site_id]=111

filter[customer_id]
string

Filter by customer_id, for example ?filter[customer_id]=456789

filter[name_or_email]
string

Filter by name or email, for example ?filter[name_or_email]=John

filter[start_date]
string

Filter by start_date, for example ?filter[start_date]=2024-12-01

filter[end_date]
string

Filter by end_date, for example ?filter[end_date]=2024-12-31

Response

Success, lists transactions which the current user may access

data
object[]