Docs
Get Account
GET /events/{eventId}/accounts/{accountId}
GET
/events/{eventId}/accounts/{accountId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **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
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | Guid | Required | The ID of the event. |
| accountId | Guid | Required | The 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
| Field | Type | Description |
|---|---|---|
| id | Guid | The account's unique ID. |
| name | string | The account's display name. |
| balance | int | Net balance from `Paid` transactions (totalCredits minus totalDebits), in cents. |
| totalDebits | int | Sum of `invoicedAmount` for all `Paid` debit transactions, in cents. |
| totalCredits | int | Sum of `invoicedAmount` for all `Paid` credit transactions, in cents. |
| quotedReceivables | int | Sum of `quotedAmount` for `Quoted` credit transactions, in cents. |
| quotedPayables | int | Sum of `quotedAmount` for `Quoted` debit transactions, in cents. |
| committedReceivables | int | Sum of `invoicedAmount` for `Committed` credit transactions, in cents. |
| committedPayables | int | Sum of `invoicedAmount` for `Committed` debit transactions, in cents. |
| debits | Transaction[] | Transactions where this account is the debit (source) account. |
| credits | Transaction[] | Transactions where this account is the credit (destination) account. |
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token, or caller lacks EventAccountingAdmin. |
NOT_FOUND | 404 | Account not found on this event. |