buezli.app API

/2026-07-14/contacts

Contact

Contacts are people associated with a client, including invoice recipients and their contact details.

Endpoints

GET /2026-07-14/contacts List records

Example request

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

Example request

curl \
  -H "Authorization: Bearer $BUEZLI_API_TOKEN" \
  "https://api.buezli.app/2026-07-14/contacts/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 contact belongs to.
first_namestringFirst name of the contact.
last_namestringLast name of the contact.
titlestringJob title or role of the contact.
emailstringEmail address of the contact.
phone_officestringOffice phone number of the contact.
phone_mobilestringMobile phone number of the contact.
archived_atdatetimeTimestamp when the contact was archived, or null when active.

Relationships

client

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