Docs

Get Account

GET /events/{eventId}/accounts/{accountId}

GET/events/{eventId}/accounts/{accountId}

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.
Event tokenx-Event-TokenOptionalRun **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually.

Returns the full detail for a single account, including its balance summary and the complete list of debit and credit transactions. Unlike the list endpoint, this includes TotalDebits and TotalCredits (paid amounts only) but does not include quoteFileId or invoiceFileId on transactions — use Get Transaction for those.

Requires EventAccountingAdmin permission on the event.

Path Parameters

FieldTypeRequiredDescription
eventIdGuidRequiredThe ID of the event.
accountIdGuidRequiredThe ID of the account to retrieve.

Example Response

{
  "id": "acct-guid-001",
  "name": "Production Budget",
  "balance": 150000,
  "totalDebits": 50000,
  "totalCredits": 200000,
  "quotedReceivables": 100000,
  "quotedPayables": 50000,
  "committedReceivables": 75000,
  "committedPayables": 25000,
  "debits": [
    {
      "id": "tx-guid-002",
      "name": "Venue Deposit",
      "date": "2026-03-15T00:00:00Z",
      "quotedAmount": 50000,
      "invoicedAmount": 50000,
      "state": "Paid",
      "debitAccount": { "id": "acct-guid-001", "name": "Production Budget" },
      "creditAccount": { "id": "acct-guid-002", "name": "Venue" }
    }
  ],
  "credits": [
    {
      "id": "tx-guid-001",
      "name": "Sponsor Payment",
      "date": "2026-03-01T00:00:00Z",
      "quotedAmount": 200000,
      "invoicedAmount": 200000,
      "state": "Paid",
      "debitAccount": { "id": "acct-guid-003", "name": "Sponsors" },
      "creditAccount": { "id": "acct-guid-001", "name": "Production Budget" }
    }
  ]
}

Response Fields

FieldTypeDescription
idGuidThe account's unique ID.
namestringThe account's display name.
balanceintNet balance from `Paid` transactions (totalCredits minus totalDebits), in cents.
totalDebitsintSum of `invoicedAmount` for all `Paid` debit transactions, in cents.
totalCreditsintSum of `invoicedAmount` for all `Paid` credit transactions, in cents.
quotedReceivablesintSum of `quotedAmount` for `Quoted` credit transactions, in cents.
quotedPayablesintSum of `quotedAmount` for `Quoted` debit transactions, in cents.
committedReceivablesintSum of `invoicedAmount` for `Committed` credit transactions, in cents.
committedPayablesintSum of `invoicedAmount` for `Committed` debit transactions, in cents.
debitsTransaction[]Transactions where this account is the debit (source) account.
creditsTransaction[]Transactions where this account is the credit (destination) account.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token, or caller lacks EventAccountingAdmin.
NOT_FOUND404Account not found on this event.