Concept
Custom Fields let you add extra fields to contact profiles in the Timely.ai CRM, beyond the default fields like name, email, and phone. They are useful when you need to store business-specific information — order number, subscribed plan, customer segment, last purchase date, tax ID, company name, and so on. Fields are defined at the workspace level and apply to all contacts. Each field has a data type (text, number, date, boolean, select) and can be marked as required or optional. Each contact’s field values are accessed viacontact.custom_fields in the Contacts API.
Available Field Types
| Type | Value in type | Example use |
|---|---|---|
| Free text | text | Notes, protocol number |
| Number | number | Contract value, order count |
| Date | date | Birthday, due date |
| Boolean | boolean | VIP, overdue, newsletter |
| Single select | select | Segment, plan, status |
| Multi-select | multiselect | Interests, contracted products |
Main Fields
| Field | Type | Description |
|---|---|---|
id | string (UUID) | Unique field ID |
name | string | Field name (displayed in UI) |
key | string | API access key (snake_case) |
type | enum | Field data type |
required | boolean | Whether the field is required |
options | array | Available options for select and multiselect |
default_value | any | Default value for new contacts |
created_at | string | ISO 8601 creation timestamp |
Using Together with Contacts
When creating or updating a contact, pass custom field values in thecustom_fields object using each field’s key:
Available Endpoints
See the left sidebar for the full list of endpoints in this group. Each endpoint has its own page with request/response schema, cURL/JS/Python examples, and an interactive playground.
Next Steps
Your first request
If you haven’t made your first call yet, start here.