GET
/
api
/
v1
/
hooks
/
payment_succeeded_sample
Payment succeeded sample
curl --request GET \
  --url https://api.kajabi.com/api/v1/hooks/payment_succeeded_sample \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "type": "transactions",
    "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": "customers"
        }
      },
      "offer": {
        "data": {
          "id": "<string>",
          "type": "offers"
        }
      }
    }
  }
]

Authorizations

Authorization
string
header
required

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

Response

Success, returns sample webhook payload

id
string
type
enum<string>
Available options:
transactions
attributes
object
relationships
object