is there a way to search for a telephone number in...
# support
r
I am wanting to review the voice recording for certain telephone calls but can't search the call log easily / quickly
v
Hi @Retta, I'm an AI assistant for Vapi. I'll analyze available sources and get back to you shortly.
----------------------------- **While I generate an answer, here are some sources that might be helpful**: * [Create Phone Call]() * [Call Forwarding]() * [Inbound Support Example]() * [Introduction]() -----------------------------
### Answer In Vapi, you can list call logs and filter them using various query parameters such as
customer.number
,
assistantId
, and
createdAt
to narrow down the search results. Here’s a quick example using the
GET List Calls
endpoint [(1)]() :
Copy code
bash
curl --request GET \
--url https://api.vapi.ai/call \
--header 'Authorization: Bearer <token>' \
--data '{
  "customer": {
    "number": "+1234567890"
  }
}'
This cURL request filters calls by the customer's phone number. You can also add other filters like
assistantId
and date ranges to further refine your search. For more details, please refer to the [List Calls]() documentation.
s
it is there in the call log section what is the exact issue that you are facing?
7 Views