GET
/
v1
/
transactions
/
{id}
Transaction details
curl --request GET \
  --url https://api.kajabi.com/v1/transactions/{id} \
  --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.

Path Parameters

id
string
required

Query Parameters

fields[transactions]
string

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

include
string

Load the related resources, for example ?include=customer,offer

Response

Success, shows details of a specified transaction

data
object