Bolcho Docs Back to app

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:read

List contacts

List customers with their call counts and last-seen time.

Query parameters

searchstringFilter by name or number.
limitnumberPage size.

Example request

bash
curl https://api.bolchoai.in/v1/contacts -H "Authorization: Bearer $VOXA_API_KEY"
GET/contacts/{id} agents:read

Get contact

A contact's remembered profile + recent call history with summaries.

Path parameters

id*uuidContact id.

Example request

bash
curl https://api.bolchoai.in/v1/contacts/$ID \
  -H "Authorization: Bearer $VOXA_API_KEY"