/2026-07-14/tasks
Task
Tasks categorize time entries recorded for project work.
Endpoints
GET
/2026-07-14/tasks
List records
Example request
curl \
-H "Authorization: Bearer $BUEZLI_API_TOKEN" \
"https://api.buezli.app/2026-07-14/tasks?page=1&limit=50"
GET
/2026-07-14/tasks/:id
Retrieve one record
Example request
curl \
-H "Authorization: Bearer $BUEZLI_API_TOKEN" \
"https://api.buezli.app/2026-07-14/tasks/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 | Display name of the task. |
| archived_at | datetime | Timestamp when the task was archived, or null when active. |