buezli.app API

/2026-07-14/projects

Project

Projects organize work for a client and identify their billing model and active dates.

Endpoints

GET /2026-07-14/projects List records

Example request

curl \
  -H "Authorization: Bearer $BUEZLI_API_TOKEN" \
  "https://api.buezli.app/2026-07-14/projects?page=1&limit=50"
GET /2026-07-14/projects/:id Retrieve one record

Example request

curl \
  -H "Authorization: Bearer $BUEZLI_API_TOKEN" \
  "https://api.buezli.app/2026-07-14/projects/123"

Fields

FieldTypeDescription
idintegerUnique identifier for the resource.
created_atdatetimeTimestamp when the resource was created.
updated_atdatetimeTimestamp when the resource was last updated.
client_idintegerID of the client this project belongs to.
namestringDisplay name of the project.
notesstringFree-form notes about the project.
currencystringISO 4217 currency code used for project rates and budgets.
project_typestringHow the project is billed: time and materials, fixed fee, or non-billable.
starts_ondateDate when the project starts.
ends_ondateDate when the project ends.
archived_atdatetimeTimestamp when the project was archived, or null when active.

Relationships

client

Returned as an ID. Add expand=client to include the related record.