Skip to main content
The Event Financials API allows you to manage financial transactions and reserves for events (claims and incidents). This includes creating payments, tracking reserves, and viewing financial totals across events. Key Concepts:
  • Transactions: Financial records associated with events (payments, invoices)
  • Reserves: Expected costs set aside for future payments
  • Transaction Types: Categories like indemnity_invoice (loss payments) and alae_invoice (allocated loss adjustment expenses)
  • Amounts in cents: Most endpoints return amounts in cents (multiply by 100 from dollars)

API Endpoints

Transaction Management

Reserves & Totals


Transaction Types

Transaction types are configurable per company. Common built-in types include: Use the GET /transaction-categories endpoint to see all available transaction types for your company.

Itemized vs Non-Itemized

Transaction types can be either:
  • Non-itemized: Single amount per transaction (e.g., indemnity_invoice)
  • Itemized: Multiple line items per transaction (e.g., alae_invoice)
When creating transactions, use the appropriate field:
  • Non-itemized: amount field (required), lineItems forbidden
  • Itemized: lineItems array (required), amount forbidden

Transaction Status


Amount Conventions

Important: Different endpoints use different units: The PATCH expected-totals endpoint uses dollars for historical compatibility.

Reserves vs Expected Totals

  • Expected Total: The anticipated total cost for a category (set by user/adjuster)
  • Reserves: Calculated as expectedTotal - paid - owed
  • Owed: Total amount of pending transactions
  • Paid: Total amount of completed transactions
Example:

Permissions


Example: Creating a Payment

Response:

Example: Voiding a Transaction

Response returns the full transaction detail with status: "void" and the provided voidReason.

Example: Updating Reserves

Response:
The type field (claim/incident) is required for permission resolution. The event type must match the value provided.

Nullable Fields