Eventzilla · Schema
Transaction
A financial transaction for an Eventzilla event order.
EventsTicketingRegistrationAttendeesEvent Management
Properties
| Name | Type | Description |
|---|---|---|
| refno | string | Transaction reference number |
| transaction_ref | string | Transaction reference number (alternate field) |
| checkout_id | number | Checkout session identifier |
| transaction_date | string | Date and time of transaction |
| transaction_amount | numberstring | Total transaction amount |
| transaction_tax | number | Tax amount |
| transaction_discount | number | Discount amount |
| eventzilla_fee | number | Eventzilla platform fee |
| transaction_status | string | Current transaction status |
| tickets_in_transaction | number | Number of tickets in the transaction |
| event_date | string | Date of the event |
| event_id | number | Associated event identifier |
| user_id | number | Organizer user identifier |
| title | string | Event title |
| string | Buyer email address | |
| buyer_first_name | string | Buyer first name |
| buyer_last_name | string | Buyer last name |
| promo_code | string | Promotional code used |
| payment_type | string | Payment method used |
| comments | string | Order comments |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://developer.eventzilla.net/schemas/transaction",
"title": "Transaction",
"description": "A financial transaction for an Eventzilla event order.",
"type": "object",
"properties": {
"refno": { "type": "string", "description": "Transaction reference number" },
"transaction_ref": { "type": "string", "description": "Transaction reference number (alternate field)" },
"checkout_id": { "type": "number", "description": "Checkout session identifier" },
"transaction_date": { "type": "string", "description": "Date and time of transaction" },
"transaction_amount": { "type": ["number", "string"], "description": "Total transaction amount" },
"transaction_tax": { "type": "number", "description": "Tax amount" },
"transaction_discount": { "type": "number", "description": "Discount amount" },
"eventzilla_fee": { "type": "number", "description": "Eventzilla platform fee" },
"transaction_status": { "type": "string", "description": "Current transaction status" },
"tickets_in_transaction": { "type": "number", "description": "Number of tickets in the transaction" },
"event_date": { "type": "string", "format": "date-time", "description": "Date of the event" },
"event_id": { "type": "number", "description": "Associated event identifier" },
"user_id": { "type": "number", "description": "Organizer user identifier" },
"title": { "type": "string", "description": "Event title" },
"email": { "type": "string", "format": "email", "description": "Buyer email address" },
"buyer_first_name": { "type": "string", "description": "Buyer first name" },
"buyer_last_name": { "type": "string", "description": "Buyer last name" },
"promo_code": { "type": "string", "description": "Promotional code used" },
"payment_type": { "type": "string", "description": "Payment method used" },
"comments": { "type": "string", "description": "Order comments" }
}
}