/2026-07-14/clients
Client
Clients are the businesses or people your account works for and bills.
Endpoints
GET
/2026-07-14/clients
List records
Example request
curl \
-H "Authorization: Bearer $BUEZLI_API_TOKEN" \
"https://api.buezli.app/2026-07-14/clients?page=1&limit=50"
GET
/2026-07-14/clients/:id
Retrieve one record
Example request
curl \
-H "Authorization: Bearer $BUEZLI_API_TOKEN" \
"https://api.buezli.app/2026-07-14/clients/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 client. |
| address | string | Postal address used for the client. |
| currency | string | ISO 4217 currency code used for new client documents. |
| locale | string | Language code used for customer-facing document labels. |
| archived_at | datetime | Timestamp when the client was archived, or null when active. |