POST
gcalendar_events_quick_add.py
Requires
https://www.googleapis.com/auth/calendar.events. Costs 1 against the provider’s own quota.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create an event from a plain-text description such as ‘Appointment at Somewhere on June 3rd 10am-10:25am’. Google parses the time and title; use events_insert when the fields are already known.
from charter.packs import gcalendar
result = await gcalendar.events_quick_add.ainvoke({"calendarId": ..., "text": ...})
https://www.googleapis.com/auth/calendar.events. Costs 1 against the provider’s own quota.| Field | Type | Description |
|---|---|---|
calendarId * | string | Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the “primary” keyword. |
| Field | Type | Description |
|---|---|---|
text * | string | The text describing the event to be created. min length 1 |
sendUpdates | SendUpdates | Guests who should receive notifications about the change. Acceptable values are: “all” (notifications are sent to all guests), “externalOnly” (notifications are sent to non-Google Calendar guests only), “none” (no notifications are sent; for calendar migration tasks, consider using the Events.import method instead). |
Was this page helpful?