Google Calendar API: Disabling alerts for Apple Calendar synced to Google Calendar -
i'm using google calendar api google python client library create calendar , events in user's google calendar. events i'm creating intended list, all-day events , shouldn't have alert notifications. i'm creating event this:
event = { 'summary': summary, 'start': { 'date': start_date }, 'end': { 'date': end_date }, 'reminders': { 'usedefault':false } }
i'm using reminders.usedefault
disable alerts on google calendar. problem have apple calendar (ical) synced google calendar , in apple calendar app, events have alerts enabled default , spammed alerts of dozens of events create each day. there way turn off corresponding alerts in apple calendar synced google calendar using google api, or strictly in domain of apple's calendar app?
to disable reminders, should set usedefault=false , add empty override reminder section.
Comments
Post a Comment