Contacts API
Manage your customer database programmatically.
List Contacts
GET /contacts
Query Parameters:
search: Find by name or phonestatus: Filter bycold,warm,hot,customerpage: Pagination page number
Create Contact
POST /contacts
Body:
{
"name": "Customer Name",
"phone": "919876543210",
"email": "customer@example.com",
"tags": ["new-lead"]
}
Update Contact
PUT /contacts/:id
Body:
{
"status": "hot",
"name": "Updated Name"
}
Delete Contact
DELETE /contacts/:id