Customers API¶
Customer and contract management.
Prefix: /api/customers
List Customers¶
Get Customer¶
Create Customer¶
Body:
{
"name": "Acme Corp",
"status": "active",
"type": "agency",
"color": "#14b8a6",
"budget": 100,
"repo": "acmeinc/main-app",
"tags": ["enterprise"]
}
Update Customer¶
Accepts any customer fields as a JSON object.
Delete Customer¶
Contracts¶
List Contracts¶
Add Contract¶
Body:
{
"name": "Q2 2026",
"budget": 120,
"start_date": "2026-04-01",
"notes": "Includes design and development",
"billable": true,
"invoiced": 0
}