API Reference
Contacts API
Manage contact records, relationships, and interaction history.
Endpoints
GET
/contactsList all contactsPOST
/contactsCreate a contactGET
/contacts/{id}Get contact detailsPUT
/contacts/{id}Update contactGET
/contacts/{id}/activitiesGet contact activitiesGet Contact
Response
{
"id": "contact_abc123",
"first_name": "John",
"last_name": "Smith",
"email": "john@acme.com",
"phone": "+1-555-123-4567",
"company": {
"id": "company_xyz",
"name": "Acme Corp"
},
"title": "VP of Engineering",
"last_contacted": "2024-12-01T14:30:00Z",
"deal_value": 125000,
"tags": ["enterprise", "decision-maker"]
}