Retta
05/14/2024, 8:43 PMVapi Support
05/14/2024, 8:43 PMVapi Support
05/14/2024, 8:43 PMcustomer.number, assistantId, and createdAt to narrow down the search results. Here’s a quick example using the GET List Calls endpoint [(1)]() :
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.Sahil
05/15/2024, 8:15 AM