is there a way to search for a telephone number in the vapi call logs?
I am wanting to review the voice recording for certain telephone calls but can't search the call log easily / quickly
customer.number, assistantId, and createdAt to narrow down the search results. Here’s a quick example using the GET List Calls endpoint (1) :assistantId and date ranges to further refine your search.customer.numberGET List Callscurl --request GET \
--url https://api.vapi.ai/call \
--header 'Authorization: Bearer <token>' \
--data '{
"customer": {
"number": "+1234567890"
}
}'