Mary
04/11/2025, 2:32 AMVapi Support Bot
04/11/2025, 2:34 AMgetSlotsOverNDays
to suggest the 3 earliest slots within a 3-day window
- If the user specifies a date, use getAvailabilityOnDate
to suggest 4 slots for that date (e.g., "Thursday 6th February: 10:15 AM, 10:30 AM, 10:45 AM, 11:00 AM")
3. **Confirmation**: Ask the user to confirm the date and time
4. **Booking**: Use makeBookingtoCalendar
to book the appointment (time format should be 10:00 or 14:30)
5. **Confirmation and Call End**: If booking is successful, use the endCall
tool
## Configuration Options
To ensure accurate availability checks, consider these configuration options:
1. **Timezone Handling**: Include the current date and time in your prompt with the correct timezone. For example:
{{ "now" | date: "%b %d, %Y, %I:%M %p", "America/New_York" }}
This helps prevent booking the wrong dates due to timezone issues, as mentioned in [this Discord thread](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1341859467884498976).
2. **Date and Time Formatting**: Use ISO format for appointment datetime parameters as noted in the [outbound sales documentation](https://docs.vapi.ai/examples/outbound-sales).Vapi Support Bot
04/11/2025, 2:34 AMmodelOutputInMessagesEnabled
setting by sending an UPDATE request to the assistant.
5. **Increase Request Timeout**: The assistant request timeout is 5 seconds by default and can fail if API calls take too long.
Is there a specific part of the setup process you're struggling with that I can help clarify further?
Sources:
- [Discord conversation about booking process](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336719759965687923)
- [Discord thread about timezone handling](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1341859467884498976)
- [Outbound sales documentation](https://docs.vapi.ai/examples/outbound-sales)
- [Discord conversation about calendar integration](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336785070408732764)
- [Discord thread about model selection](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1337465172263960637)Vapi
04/11/2025, 7:53 PM