Docs
Get Transaction
GET /events/{eventId}/transactions/{transactionId}
GET
/events/{eventId}/transactions/{transactionId}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 full details for a single transaction, including file attachment IDs for the quote and invoice documents.
Requires EventAccountingAdmin permission on the event.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | Guid | Required | The ID of the event. |
| transactionId | Guid | Required | The ID of the transaction to retrieve. |
Example Response
{
"id": "tx-guid-001",
"name": "Venue Deposit",
"date": "2026-03-15T00:00:00Z",
"quotedAmount": 100000,
"invoicedAmount": 95000,
"quoteFileId": "file-guid-001",
"invoiceFileId": "file-guid-002",
"state": "Committed",
"debitAccount": { "id": "acct-guid-001", "name": "Production Budget" },
"creditAccount": { "id": "acct-guid-002", "name": "Venue" }
}
Response Fields
| Field | Type | Description |
|---|---|---|
| id | Guid | The transaction's unique ID. |
| name | string | The transaction's display name. |
| date | DateTime | The date of the transaction. |
| quotedAmount | int | The originally quoted amount, in cents. |
| invoicedAmount | int | The final invoiced amount, in cents. |
| quoteFileId | Guid | File ID for the attached quote document. `Guid.Empty` if none attached. |
| invoiceFileId | Guid | File ID for the attached invoice document. `Guid.Empty` if none attached. |
| state | string | Transaction state. One of: `Quoted`, `Committed`, `Paid`, `Excluded`. |
| debitAccount | object | The account money flows out of (`id` + `name`). |
| creditAccount | object | The account money flows into (`id` + `name`). |
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token, or caller lacks EventAccountingAdmin. |
NOT_FOUND | 404 | Transaction not found on this event. |