Raju
05/28/2025, 6:36 AMVapi Support Bot
05/28/2025, 6:38 AMjson
{
"results": [
{
"toolCallId": "YOUR_TOOL_CALL_ID",
"result": "YOUR_RESULT"
}
]
}
Replace YOUR_TOOL_CALL_ID
with the ID from the incoming request, and YOUR_RESULT
with your tool's output.
[See official docs for details.](https://docs.vapi.ai/tools/custom-tools#server-response-format-providing-results-and-context)
Source:
- [Vapi Custom Tools Documentation](https://docs.vapi.ai/tools/custom-tools#server-response-format-providing-results-and-context)Raju
05/28/2025, 6:59 AMVapi Support Bot
05/28/2025, 7:00 AMjson
{
"results": [
{
"toolCallId": "YOUR_TOOL_CALL_ID",
"result": "YOUR_RESULT"
}
]
}
Replace YOUR_TOOL_CALL_ID
with the ID from the incoming request (look for it in the tool call payload), and set YOUR_RESULT
to your tool's output. This format is required for Vapi to process your tool's response correctly.
[See official docs for details.](https://docs.vapi.ai/tools/custom-tools#server-response-format-providing-results-and-context)
Source:
- [Vapi Custom Tools Documentation](https://docs.vapi.ai/tools/custom-tools#server-response-format-providing-results-and-context)Kyle Brunker
05/28/2025, 7:35 AM