buezli.app API

/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

FieldTypeDescription
idintegerUnique identifier for the resource.
created_atdatetimeTimestamp when the resource was created.
updated_atdatetimeTimestamp when the resource was last updated.
namestringDisplay name of the task.
archived_atdatetimeTimestamp when the task was archived, or null when active.