/api/v1/contactsList contacts
Returns paginated contacts for the API key tenant. Supports search by contact name or phone.
Request
Query parameters: search, per_page
Response
{
"data": [
{
"id": 42,
"name": "Priya Shah",
"phone": "+919876543210",
"email": "priya@example.com",
"source": "api"
}
],
"current_page": 1,
"per_page": 25,
"total": 1
}