Lead object
| Field | Type | Description |
|---|---|---|
id | integer | Unique lead ID. |
uuid | string (uuid) | Globally unique identifier. |
title | string | Lead name or company. |
status_name | string | null | Status slug. Use GET /lead-statuses to list available values. |
meta_data | object | null | Extra data. Contains an about sub-object with description and url. |
avatar | string | null | Avatar URL or emoji. |
avatar_type | string | null | "emoji" or "image". |
created_at | string | ISO 8601 creation timestamp. |
updated_at | string | ISO 8601 last-updated timestamp. |
Endpoints
List leads
GET /leadsGet lead
GET /leads/{id}Create lead
POST /leadsUpdate lead
PUT /leads/{id}Upsert status
PUT /leads/{id}/statusDelete lead
DELETE /leads/{id}