Get all existing transactions
GET/v1/accounts/:id/transactions
Get all existing transactions
Request
Path Parameters
id uuidrequired
ID of Account
Responses
- 200
- 401
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
total int64
Example:
10
transactions
object[]
id uuid
Example:
01926b84-93cb-75b9-b445-a5a744f7a59f
accountId uuid
Example:
01926b84-93cb-75b9-b445-a5a744f7a59f
payeeId uuid
Example:
01926b84-93cb-75b9-b445-a5a744f7a59f
payeeName string
Example:
Swiggy
categoryId uuid
Example:
01926b84-93cb-75b9-b445-a5a744f7a59f
categoryName string
Example:
Online Food
name string
Example:
House Party Food
notes string
Example:
Sample markdown notes
credit float
Example:
12.25
debit float
Example:
10.49
clearedAt date-time
Example:
2024-10-07T01:02:03Z
createdAt date-time
Example:
2024-10-07T01:02:03Z
updatedAt date-time
Example:
2024-10-07T01:02:03Z
{
"total": 10,
"transactions": [
{
"id": "01926b84-93cb-75b9-b445-a5a744f7a59f",
"accountId": "01926b84-93cb-75b9-b445-a5a744f7a59f",
"payeeId": "01926b84-93cb-75b9-b445-a5a744f7a59f",
"payeeName": "Swiggy",
"categoryId": "01926b84-93cb-75b9-b445-a5a744f7a59f",
"categoryName": "Online Food",
"name": "House Party Food",
"notes": "Sample markdown notes",
"credit": 12.25,
"debit": 10.49,
"clearedAt": "2024-10-07T01:02:03Z",
"createdAt": "2024-10-07T01:02:03Z",
"updatedAt": "2024-10-07T01:02:03Z"
}
]
}
Unauthenticated
Internal Error
Loading...