Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Manage CRM contacts and pipeline
GET /api/crm/contacts
search
tag
page
limit
{ "contacts": [ { "id": "contact_abc123", "name": "Jane Smith", "email": "jane@example.com", "company": "Acme Inc.", "tags": ["client", "enterprise"], "createdAt": "2025-02-10T08:00:00Z" } ], "total": 150, "page": 1, "limit": 25 }
POST /api/crm/contacts
{ "name": "Jane Smith", "email": "jane@example.com", "company": "Acme Inc.", "phone": "+1-555-0123", "tags": ["lead"], "notes": "Met at SaaStr conference" }
PATCH /api/crm/contacts/{id}
DELETE /api/crm/contacts/{id}
GET /api/crm/pipeline/stages
POST /api/crm/pipeline/move
{ "contactId": "contact_abc123", "stageId": "stage_qualified" }
GET /api/crm/tasks
POST /api/crm/tasks
{ "title": "Follow up with Jane", "contactId": "contact_abc123", "dueDate": "2025-04-20T10:00:00Z", "assignedTo": "user_xyz" }