Core resources
Contacts
Customers your assistants have spoken with, keyed by phone number. Each contact carries persistent memory — accumulated profile facts + past-call summaries — which is injected into the assistant at the start of the next call so it remembers returning callers.
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. |
Example request
bash
curl https://api.bolchoai.in/v1/contacts -H "Authorization: Bearer $VOXA_API_KEY"GET
/contacts/{id} agents:readGet contact
A contact's remembered profile + recent call history with summaries.
Path parameters
| id* | uuid | Contact id. |
Example request
bash
curl https://api.bolchoai.in/v1/contacts/$ID \
-H "Authorization: Bearer $VOXA_API_KEY"