Kajabi · Schema
Transactions
Schema for Kajabi transactions
Creator EconomyOnline CoursesMembershipsE-CommerceDigital ProductsContactsWebhooksPayments
Properties
| Name | Type | Description |
|---|---|---|
| action | string | |
| state | string | |
| payment_type | stringnull | |
| amount_in_cents | integer | |
| sales_tax_in_cents | integer | |
| currency | string | |
| currency_symbol | string | |
| formatted_amount | string | |
| created_at | string | ISO 8601 date-time, read only |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/kajabi/main/json-schema/transactions_attributes.json",
"title": "Transactions",
"description": "Schema for Kajabi transactions",
"type": "object",
"properties": {
"action": {
"type": "string"
},
"state": {
"type": "string"
},
"payment_type": {
"type": [
"string",
"null"
]
},
"amount_in_cents": {
"type": "integer"
},
"sales_tax_in_cents": {
"type": "integer"
},
"currency": {
"type": "string"
},
"currency_symbol": {
"type": "string"
},
"formatted_amount": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"description": "ISO 8601 date-time, read only"
}
}
}