ユーザーのカレンダー リストにある既存のカレンダーを更新します。今すぐ試すまたは例を見る。
リクエスト
HTTP リクエスト
PUT https://www.googleapis.com/calendar/v3/users/me/calendarList/calendarId
パラメータ
パラメータ名 | 値 | 説明 |
---|---|---|
パスパラメータ | ||
calendarId |
string |
カレンダー ID。カレンダー ID を取得するには、calendarList.list メソッドを呼び出します。現在ログインしているユーザーのメイン カレンダーにアクセスするには、「primary 」キーワードを使用します。
|
省略可能なクエリ パラメータ | ||
colorRgbFormat |
boolean |
foregroundColor フィールドと backgroundColor フィールドを使用してカレンダーの色(RGB)を書き込むかどうか。この機能を使用すると、インデックスベースの colorId フィールドが最適な一致オプションに自動的に設定されます。省略可。デフォルトは False です。
|
承認
このリクエストは、少なくとも次のうち 1 つのスコープによる承認が必要です。
範囲 |
---|
https://www.googleapis.com/auth/calendar |
https://www.googleapis.com/auth/calendar.app.created |
https://www.googleapis.com/auth/calendar.calendarlist |
詳しくは、認証と認可のページをご覧ください。
リクエストの本文
リクエストの本文には、以下のプロパティを使用して CalendarList リソースを指定します。
プロパティ名 | 値 | 説明 | メモ |
---|---|---|---|
省略可能なプロパティ | |||
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(); // Retrieve the calendar list entry CalendarListEntry calendarListEntry = service.calendarList().get("calendarId").execute(); // Make a change calendarListEntry.setColorId("newColorId"); // Update the altered entry CalendarListEntry updatedCalendarListEntry = service.calendarList().update(calendarListEntry.getId(), calendarListEntry).execute(); System.out.println(updatedCalendarListEntry.getEtag());
Python
Python クライアント ライブラリを使用します。
# First retrieve the calendarListEntry from the API. calendar_list_entry = service.calendarList().get(calendarId='calendarId').execute() calendar_list_entry['colorId'] = 'newColorId' updated_calendar_list_entry = service.calendarList().update( calendarId=calendar_list_entry['id'], body=calendar_list_entry).execute() print created_calendar_list_entry['etag']
PHP
PHP クライアント ライブラリを使用します。
// First retrieve the calendarListEntry from the API. $calendarListEntry = $service->calendarList->get('calendarId'); $calendarListEntry->setColorId('newColorId'); $updatedCalendarListEntry = service->calendarList->update($calendarListEntry->getId(), $calendarListEntry); echo $updatedCalendarListEntry->getEtag();
Ruby
Ruby クライアント ライブラリを使用します。
calendar_list_entry = client.get_calendar_list('calendarId') calendar_list_entry.colorId = 'newColorId' result = client.update_calendar_list(calendar_list_entry.id, calendar_list_entry) print result.etag
試してみよう:
以下の API Explorer を使用して、ライブデータに対してこのメソッドを呼び出し、レスポンスを確認します。