Alexan
04/01/2025, 2:36 PMVapi Support Bot
04/01/2025, 2:38 PMjson
{
"results": [
{
"toolCallId": "call_ID_FROM_VAPI_REQUEST",
"result": "The following timeslots are available: 2025-01-31T14:00:00-05:00,2025-01-31T14:30:00-05:00,2025-01-31T15:30:00-05:00"
}
]
}
According to [troubleshooting documentation](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1334658296291921920), the toolCallId
in your response must match the ID sent by VAPI in the initial request.
## Date Formatting
I notice in your screenshot that you're using "Format Now Date" which might be causing issues. For timeslots, VAPI expects ISO 8601 format with timezone information (e.g., 2025-01-20T09:00:00+01:00
).
According to [best practices for formatting timeslot data](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336772166330351646), you can use the date
filter in Make.com with format specifiers and timezone:
{{"now" | date: "%Y-%m-%dT%H:%M:%S%z", "America/New_York"}}
## Webhook Configuration
Make sure your webhook is properly configured:
1. Set the Content-Type header to application/json
in your Make.com HTTP module
2. Ensure you're capturing the toolCallId
from VAPI's request and including it in your response
3. Check that your response structure matches what VAPI expectsVapi Support Bot
04/01/2025, 2:38 PMjson
{
"results": [
{
"toolCallId": "call_ID_FROM_VAPI",
"result": "The following timeslots are available: 2025-01-14T15:30:00-05:00,2025-01-14T17:00:00-05:00,2025-01-14T17:30:00-05:00"
}
]
}
This format has been confirmed to work according to [webhook data format requirements](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1327481613004701779).
Is there anything specific about your Make.com workflow or webhook configuration you'd like me to help troubleshoot further?
Sources:
- [VAPI webhook configuration requirements](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336345690393149452)
- [VAPI webhook data format requirements for timeslots](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1334658296291921920)
- [Troubleshooting VAPI webhook issues](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336440478727667844)
- [Best practices for formatting timeslot data in webhooks](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336772166330351646)
- [Go High Level calendar integration with VAPI using webhooks](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1327481613004701779)Kings Big
04/01/2025, 8:32 PMPen 💻
04/01/2025, 11:39 PMAlexan
04/02/2025, 12:18 PMVapi Support Bot
04/02/2025, 12:23 PMAlexan
04/02/2025, 4:28 PMKings Big
04/06/2025, 12:38 PMAlexan
04/08/2025, 4:06 PMKings Big
04/10/2025, 9:59 PM