geramalagon
08/12/2025, 11:16 AMVapi Support Bot
08/12/2025, 11:18 AManalysisPlan with a structured data prompt and schema. For example:
json
{
"structuredDataPrompt": "Extract all tool calls (API, SMS, callTransfer) and their success status from the call transcript.",
"structuredDataSchema": {
"type": "object",
"properties": {
"toolCalls": {
"type": "array",
"items": {
"type": "object",
"properties": {
"toolType": { "type": "string" },
"success": { "type": "boolean" }
}
}
}
}
}
}
This will let you programmatically analyze tool calls and their outcomes in each call record's analysis results.
Source:
- [Call analysis documentation](https://docs.vapi.ai/assistants/call-analysis)Vapi Support Bot
08/12/2025, 11:58 AMgeramalagon
08/12/2025, 11:58 AMChiranjeet Mishra
08/13/2025, 3:33 PM