Get all existing groups
GET/v1/groups
Get all existing groups
Responses
- 200
- 401
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
total int64
Example:
10
groups
object[]
id uuid
Example:
01926b84-93cb-75b9-b445-a5a744f7a59f
name string
Example:
Recurring Expenses
notes string
Example:
Some markdown notes
createdAt date-time
Example:
2024-10-07T01:02:03Z
updatedAt date-time
Example:
2024-10-07T01:02:03Z
{
"total": 10,
"groups": [
{
"id": "01926b84-93cb-75b9-b445-a5a744f7a59f",
"name": "Recurring Expenses",
"notes": "Some markdown notes",
"createdAt": "2024-10-07T01:02:03Z",
"updatedAt": "2024-10-07T01:02:03Z"
}
]
}
Unauthenticated
Internal Error
Loading...