For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DashboardGet an API key
Get StartedEventsToolsChangelog
Get StartedEventsToolsChangelog
  • Reference
    • Customer events
    • Contact events
    • Onboarding events
    • Task events
LogoLogo
DashboardGet an API key
Reference

Contact events

|View as Markdown|Open in Claude|
Was this page helpful?
Previous

Customer events

Next

Onboarding events

Built with

One event fires on the contact resource today. Additional events (contact.updated, contact.deleted) are typed and tracked internally — subscribe to contact.created for now and watch the Changelog for new types.

EVENT TYPES
TypeFires when
contact.createdA contact is attached to a customer.
PAYLOAD
contact.created
1{
2 "id": "evt_2nQv...",
3 "type": "contact.created",
4 "data": {
5 "object": {
6 "id": "con_2N...",
7 "customer_id": "cus_2N...",
8 "display_id": 8421,
9 "name": "Jordan Lee",
10 "email": "jordan@acme.com",
11 "title": "Head of Operations",
12 "is_primary": true
13 }
14 }
15}