MedB
08/06/2025, 6:52 PMVapi Support Bot
08/06/2025, 6:54 PManalysisPlan.structuredDataMultiPlan and access the aggregated results via call.analysis.structuredDataMulti. Then, set up a webhook to receive the full analysis object at the end of the call. Example webhook payload:
json
{
"type": "assistant-request",
"call": {
"analysis": {
"structuredDataMulti": [
{ "assistant": "A", "data": { ... } },
{ "assistant": "B", "data": { ... } }
]
}
}
}
Make sure your webhook endpoint is ready to process the structuredDataMulti array for all assistants in the squad.
Reference: [Changelog March 23, 2025](https://docs.vapi.ai/changelog/2025/3/23), [Webhooks API](https://docs.vapi.ai/api-reference/webhooks/server-message)
Sources:
- [Changelog March 23, 2025](https://docs.vapi.ai/changelog/2025/3/23)
- [Webhooks API](https://docs.vapi.ai/api-reference/webhooks/server-message)MedB
08/06/2025, 9:03 PM