Where to find it
Settings > Data (/dashboard/settings/data).
Discovered attributes
Halo records every trait and context key you ever send via the SDK or API. The Data settings page surfaces these as three tabs:| Tab | What it shows |
|---|---|
| User traits | Every key seen in identify() / userTraits |
| Company traits | Every key seen in identifyCompany() / companyTraits |
| Context | Every key seen in setContext() / context |
Why descriptions matter
The AI sees your custom fields by name and value. A field calledacquisition_channel = paid is reasonably interpretable. A field called tier = 3 is not — does 3 mean “third tier” (high) or “level 3 trial” (low)?
A good description like “Customer acquisition channel — paid, organic, referral, or partner” gives the AI the schema it needs to use the field correctly.
Set descriptions for:
- Custom fields with non-obvious names
- Numeric fields where scale matters
- Enum fields where the AI should know the allowed values
- Anything you’d explain to a new teammate
PATCH /api/settings/attributes/:id.
Custom fields
Beyond traits the SDK pushes, you can define your own custom fields that you want available throughout the dashboard:| Type | Used for |
|---|---|
| text | Free-form short text |
| Email addresses | |
| tel | Phone numbers |
| number | Numeric values |
| date | Dates |
| select | Predefined options |
teams.settings.custom_fields and can be:
- Used in lead capture flows (the AI asks the user for their value)
- Edited on contact and company detail pages
- Filtered on in segments
- Pushed to Halo via the SDK or API like any other trait
- Lead source (text or select)
- Account manager (text)
- Region (select: US, EU, APAC)
- Renewal date (date — though Halo also has dedicated renewal fields)
What’s not here
A few things this page doesn’t manage:- Data retention policies — not surfaced as user-configurable settings
- Export controls — there’s no built-in CSV export for trait data on this page
- Deletion requests — for GDPR-type asks, contact support
Documentation links
The Data settings page also has a docs accordion with links to relevant external docs (this site atdocs.haloagents.ai).
Where to go next
User Traits
The traits Halo recognizes natively.
Context Entries
Structured context beyond simple traits.
Send Context
How traits and context flow in via the SDK.