CryptoGamer
10/27/2025, 9:02 AMVapi Support Bot
10/27/2025, 9:04 AMresults array, each containing a toolCallId and a result. Here’s the required format for both "Check Calendar Availability" and "Create Event":
json
{
"results": [
{
"toolCallId": "YOUR_TOOL_CALL_ID",
"result": {
"available": true,
"timeSlots": [
{ "start": "2025-10-27T09:00:00", "end": "2025-10-27T10:00:00" }
],
"message": "Perfect! The date is open. What time works for you?"
}
}
]
}
Replace YOUR_TOOL_CALL_ID with the ID from the incoming request.
This structure is required for Vapi to process your tool’s response correctly ([see docs](https://docs.vapi.ai/tools/custom-tools)).
Source:
- [Custom Tools](https://docs.vapi.ai/tools/custom-tools)Vapi Support Bot
10/27/2025, 11:33 AM