Lead object
| Field | Type | Description |
|---|---|---|
id | integer | Unique lead ID. |
title | string | Lead name or company. |
description | string | null | Full description. |
short_description | string | null | Short summary shown in cards. |
tag | string | null | Free-form label, e.g. "hot". |
due_date | string | null | ISO 8601 deadline. |
ongoing | boolean | No fixed deadline when true. |
lead_status | object | null | Current status — id, name, label, color. |
custom_fields | array | Values for your agency’s custom fields. |
created_at | string | ISO 8601 creation 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}