Use this method to search for call transcriptions containing specific keywords or phrases. Wavix automatically labels speakers as an agent and a customer based on the call direction. You can search for phrases said by an agent, a customer, or both.
By default, the results are paginated, with 25 records per page.
This endpoint requires authentication.
POST /cdr
curl -X POST \
--url 'https://api.wavix.com/v1/cdr?appid=your-API-key' \
-H 'Accept: application/json' \
-H 'Content-type: application/json' \
--data-raw '{
"type": "placed",
"from": "2023-01-01",
"to": "2023-01-31",
"transcription": {
"status": "completed"
},
"page": 2,
"per_page": 50
}'