Docs
Delete Transaction
DELETE /events/{eventId}/transactions/{transactionId}
DELETE
/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. |
Permanently removes a transaction from the event. Deleting a transaction automatically recalculates the balance and cash flow projections on both the debit and credit accounts it was linked to.
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 delete. |
Response
200 OK — No response body.
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. |