ImmovableMender
06/18/2025, 1:23 AMVapi Support Bot
06/18/2025, 1:24 AManalysisPlan, then use the SmsSendTool to send that summary. For example, after the call ends, retrieve the summary from call.analysis.summary and trigger the SMS tool:
json
{
"tools": [
{
"type": "sms",
"metadata": { "from": "+15551234567" }
}
]
}
In your workflow or webhook, send the summary as an SMS using this tool. You may need to implement backend logic to fetch the summary and call the SMS tool after the call ends.
Note: Direct workflow code for this exact flow is not provided in the documentation, so some custom integration is required.
Sources:
- [Default Tools Send Text (SMS)](https://docs.vapi.ai/tools/default-tools)
- [Call Analysis (Summary)](https://docs.vapi.ai/assistants/call-analysis)
- [Changelog: SmsSendTool](https://docs.vapi.ai/changelog/2025/4/3)ImmovableMender
06/18/2025, 1:50 AMKings_big💫
06/18/2025, 5:37 PMConversationNode to gather the transcript, summarize it with a custom function, then pass the summary to an SmsTool node (formerly SmsSendTool) using messages: [{ to, body }], and end with a HangupNode if needed..Chiranjeet Mishra
06/19/2025, 5:31 PM