2017-05-05 85 views
0

我正在使用Google Calendar API在我的Web应用程序(ReactJS)中删除事件。Google Calendar API:如何禁用通知?

我想要做的是覆盖默认的通知设置, 但值“不发送任何提醒”。

我发现的所有是overwrite the default,但有一个新的价值(例如电子邮件10分钟)。

那么,有没有办法通过谷歌日历 API提醒设置为false

这个JSON的样子:

"reminders": { 
    "useDefault": boolean, 
    "overrides": [ 
    { 
     "method": string, 
     "minutes": integer 
    } 
    ] 
} 

回答