[Google Apps Script] カレンダーに予定を作成する

作成日: 2020年06月15日

createEvent 関数を使うと、Google カレンダーに予定を作成することができます。下記のサンプルコードでは、カレンダーID ***@gmail.com のカレンダーに、ダミー予定 というタイトルの予定を 12:00 から 13:00 の時間帯で作成しています。

function main() {
  let calendar = CalendarApp.getCalendarById('***@gmail.com');
  calendar.createEvent(
    'ダミー予定',
    new Date('2022-06-15T12:00:00+09:00'),
    new Date('2022-06-15T13:00:00+09:00')
  );
}
Google Apps Script