/2026-07-14/expense_categories
ExpenseCategory
Expense categories classify recorded expenses.
Endpoints
GET
/2026-07-14/expense_categories
List records
Example request
curl \
-H "Authorization: Bearer $BUEZLI_API_TOKEN" \
"https://api.buezli.app/2026-07-14/expense_categories?page=1&limit=50"
GET
/2026-07-14/expense_categories/:id
Retrieve one record
Example request
curl \
-H "Authorization: Bearer $BUEZLI_API_TOKEN" \
"https://api.buezli.app/2026-07-14/expense_categories/123"
Fields
| Field | Type | Description |
|---|---|---|
| id | integer | Unique identifier for the resource. |
| created_at | datetime | Timestamp when the resource was created. |
| updated_at | datetime | Timestamp when the resource was last updated. |
| name | string | Current display name of the category. |
| archived_at | datetime | Timestamp when the category was archived, or null when active. |