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=appid' \
-H 'Accept: application/json'\
-H 'Content-Type: application/json' \
--data-raw '{
"type": "placed",
"from": "2023-01-01T00:00:00.000Z",
"to": "2023-01-31T00:00:00.000Z",
"transcription": {
"status": "completed",
"language": "en"
},
"page": 2,
"per_page": 50
}'