Google Calendar Delete and Reschedule
# support
c
Hello i was wondering if there was any way that you can Google Calendar Delete and Reschedule with VAPI?
v
Yes, you can reschedule Google Calendar events with Vapi. Here's a code snippet example using a custom tool for rescheduling:
Copy code
json
{
  "tool": "reschedule_appointment",
  "params": {
    "appointmentId": "your-event-id",
    "time": "2025-09-20T15:00:00Z"
  }
}
This will update the event's time in Google Calendar via your Vapi assistant. For deleting events, the documentation does not provide a direct method. Sources: - [Appointment scheduling assistant example](https://docs.vapi.ai/assistants/examples/appointment-scheduling) - [Google Calendar Integration](https://docs.vapi.ai/assistants/tools/google-calendar)
c
Since those functions are not prebuilt natively in VAPI, you will have to create your own API tool to perform these tasks. Please review the google calendar API integration documentation for required parameters and authentication details
3 Views