#With conversational ai voice detection, it works but how do I see whether the conversation went to

1 messages · Page 1 of 1 (latest)

idle narwhalBOT
#
AI-generated Answer for _dreadnought_

Short answer: check the transcript for a system tool call named “voicemail_detection.”

Details

  • GET Conversation: The conversation details endpoint returns the full transcript. When the Voicemail Detection tool fires, it’s logged as a system tool call (name: voicemail_detection) with a reason argument inside the transcript. Inspect the transcript’s tool_calls to determine that the call went to voicemail. The docs don’t list a dedicated top‑level voicemail flag in this response as of Aug 27, 2025.
  • Post‑call webhooks: If you’ve enabled post_call_transcription webhooks, you’ll receive the same conversation history (including tool calls) and can detect voicemail there as well.
  • UI and batch calls: The Voicemail Detection docs note that detection events are logged and visible in conversation history and batch call results.

If you need a code sample to filter for the voicemail_detection tool call in the transcript payload, I can provide one.

regal grove
#

I've got a post call webhook setup. Can you show me a small bit of code for that