/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
| 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. |
| client_id | integer | ID of the client this contact belongs to. |
| first_name | string | First name of the contact. |
| last_name | string | Last name of the contact. |
| title | string | Job title or role of the contact. |
| string | Email address of the contact. | |
| phone_office | string | Office phone number of the contact. |
| phone_mobile | string | Mobile phone number of the contact. |
| archived_at | datetime | Timestamp when the contact was archived, or null when active. |
Relationships
client
Returned as an ID. Add expand=client to include the related record.