Core resources
Contacts
Customers your assistants have spoken with, keyed by phone number. A contact records identity and call history only — assistants are never given remembered facts about a caller. To personalise a call, pass what you know with `variableValues` when you dial.
GET
/contacts agents:readList contacts
List customers with their call counts and last-seen time.
Query parameters
| search | string | Filter by name or number. |
| limit | number | Page size. |
bash
curl https://api.bolchoai.in/v1/contacts -H "Authorization: Bearer $BOLCHO_API_KEY"GET
/contacts/{id} agents:readGet contact
A contact's identity plus recent call history with summaries.
Path parameters
| id* | uuid | Contact id. |
bash
curl https://api.bolchoai.in/v1/contacts/$ID \
-H "Authorization: Bearer $BOLCHO_API_KEY"