既存のカレンダーをユーザーのカレンダー リストに挿入します。今すぐ試すまたは例を見る。
リクエスト
HTTP リクエスト
POST https://www.googleapis.com/calendar/v3/users/me/calendarList
パラメータ
パラメータ名 | 値 | 説明 |
---|---|---|
省略可能なクエリ パラメータ | ||
colorRgbFormat |
boolean |
foregroundColor フィールドと backgroundColor フィールドを使用してカレンダーの色(RGB)を書き込むかどうか。この機能を使用すると、インデックスベースの colorId フィールドが最適な一致オプションに自動的に設定されます。省略可。デフォルトは False です。
|
承認
このリクエストは、少なくとも次のうち 1 つのスコープによる承認が必要です。
範囲 |
---|
https://www.googleapis.com/auth/calendar |
https://www.googleapis.com/auth/calendar.calendarlist |
詳しくは、認証と認可のページをご覧ください。
リクエストの本文
リクエストの本文には、以下のプロパティを使用して CalendarList リソースを指定します。
プロパティ名 | 値 | 説明 | メモ |
---|---|---|---|
必須プロパティ | |||
id |
string |
カレンダーの識別子。 | |
省略可能なプロパティ | |||
backgroundColor |
string |
カレンダーのメインカラー(16 進数形式「#0088aa 」)。このプロパティは、インデックスベースの colorId プロパティに代わるものです。このプロパティを設定または変更するには、insert、update、patch メソッドのパラメータで colorRgbFormat=true を指定する必要があります。省略可。 |
書き込み可能 |
colorId |
string |
カレンダーの色。これは、色定義の calendar セクションのエントリを参照する ID です(色エンドポイントをご覧ください)。このプロパティは backgroundColor プロパティと foregroundColor プロパティに置き換えられ、これらのプロパティを使用する場合は無視できます。省略可。 |
書き込み可能 |
defaultReminders[] |
list |
認証されたユーザーがこのカレンダーに対して設定しているデフォルトのリマインダー。 | 書き込み可能 |
defaultReminders[].method |
string |
このリマインダーで使用されるメソッド。指定できる値は次のとおりです。
リマインダーを追加する際に必須です。 |
書き込み可能 |
defaultReminders[].minutes |
integer |
イベントの開始前にリマインダーをトリガーするまでの時間(分)。有効な値は 0 ~ 40320(4 週間分)です。 リマインダーを追加する際に必須です。 |
書き込み可能 |
foregroundColor |
string |
カレンダーの前景色(16 進数形式の「#ffffff 」)。このプロパティは、インデックスベースの colorId プロパティに代わるものです。このプロパティを設定または変更するには、insert メソッド、update メソッド、patch メソッドのパラメータで colorRgbFormat=true を指定する必要があります。省略可。 |
書き込み可能 |
notificationSettings |
object |
認証されたユーザーがこのカレンダーに対して受信している通知。 | 書き込み可能 |
notificationSettings.notifications[].method |
string |
通知の配信に使用される方法。指定できる値は次のとおりです。
通知を追加する際に必須です。 |
書き込み可能 |
notificationSettings.notifications[].type |
string |
通知のタイプ。指定できる値は次のとおりです。
通知を追加する際に必須です。 |
書き込み可能 |
selected |
boolean |
カレンダー コンテンツがカレンダー UI に表示されるかどうか。省略可。デフォルトは False です。 | 書き込み可能 |
summaryOverride |
string |
認証されたユーザーがこのカレンダーに設定した概要。省略可。 | 書き込み可能 |
レスポンス
成功すると、このメソッドはレスポンスの本文で CalendarList リソースを返します。
例
注: このメソッドで使用可能なコード例では、サポートされているプログラミング言語すべての例を示しているわけではありません(サポートされている言語の一覧については、クライアント ライブラリ ページをご覧ください)。
Java
Java クライアント ライブラリを使用します。
import com.google.api.services.calendar.Calendar; import com.google.api.services.calendar.model.CalendarListEntry; // ... // Initialize Calendar service with valid OAuth credentials Calendar service = new Calendar.Builder(httpTransport, jsonFactory, credentials) .setApplicationName("applicationName").build(); // Create a new calendar list entry CalendarListEntry calendarListEntry = new CalendarListEntry(); calendarListEntry.setId("calendarId"); // Insert the new calendar list entry CalendarListEntry createdCalendarListEntry = service.calendarList().insert(calendarListEntry).execute(); System.out.println(createdCalendarListEntry.getSummary());
Python
Python クライアント ライブラリを使用します。
calendar_list_entry = { 'id': 'calendarId' } created_calendar_list_entry = service.calendarList().insert(body=calendar_list_entry).execute() print created_calendar_list_entry['summary']
PHP
PHP クライアント ライブラリを使用します。
$calendarListEntry = new Google_Service_Calendar_CalendarListEntry(); $calendarListEntry->setId("calendarId"); $createdCalendarListEntry = $service->calendarList->insert($calendarListEntry); echo $createdCalendarListEntry->getSummary();
Ruby
Ruby クライアント ライブラリを使用します。
entry = Google::Apis::CalendarV3::CalendarListEntry.new( id: 'calendarId' ) result = client.insert_calendar_list(entry) print result.summary
試してみよう:
以下の API Explorer を使用して、ライブデータに対してこのメソッドを呼び出し、レスポンスを確認します。