Skip to main content
API Reference

Contacts API

Manage contact records, relationships, and interaction history.

Endpoints

GET/contactsList all contacts
POST/contactsCreate a contact
GET/contacts/{id}Get contact details
PUT/contacts/{id}Update contact
GET/contacts/{id}/activitiesGet contact activities

Get 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"]
}

Next Steps