Events: move

Requires authorization 承認が必要

Moves an event to another calendar, i.e. changes an event's organizer. Try it now or see an example. 予定を別のカレンダーに移動します。つまり、予定の開催者を変更します。今すぐ試す、例を見てください

Request要求

HTTP requestHTTPリクエスト

POST https://www.googleapis.com/calendar/v3/calendars/calendarId/events/eventId/move

Parametersパラメーター

Parameter nameパラメータ名 Value Description説明
Path parametersパスパラメータ
calendarId string Calendar identifier of the source calendar where the event currently is on. イベントが現在開催されているソースカレンダーのカレンダーID。
eventId string Event identifier. イベントID
Required query parameters必須のクエリパラメータ
destination string Calendar identifier of the target calendar where the event is to be moved to. 予定の移動先のターゲットカレンダーのカレンダーID。
Optional query parametersオプションのクエリパラメータ
sendNotifications boolean Deprecated. Please use sendUpdates instead.

Whether to send notifications about the change of the event's organizer. Note that some emails might still be sent even if you set the value to false. The default is false. 廃止予定です。代わりにsendUpdatesを使ってください。

イベントの開催者の変更に関する通知を送信するかどうか。に値を設定しても、電子メールが送信される可能性があることに注意してくださいfalse。デフォルトはfalseです。
sendUpdates string Guests who should receive notifications about the change of the event's organizer.

Acceptable values are:
  • "all": Notifications are sent to all guests. " all":すべてのゲストに通知が送信されます。
  • "externalOnly": Notifications are sent to non-Google Calendar guests only. " externalOnly":通知は、Googleカレンダー以外のゲストにのみ送信されます。
  • "none": No notifications are sent. This value should only be used for migration use cases (note that in most migration cases the import method should be used). " none":通知は送信されません。この値は、マイグレーションのユースケースにのみ使用する必要があります(ほとんどのマイグレーションのケースでは、インポート方式を使用する必要があります)。

Authorization承認

This request requires authorization with at least one of the following scopes (read more about authentication and authorization).この要求には、以下の範囲のうちの少なくとも1つを使用した許可が必要です(認証および許可について詳しく読む)。

Scope範囲
https://www.googleapis.com/auth/calendar
https://www.googleapis.com/auth/calendar.events

Request bodyリクエストボディ

Do not supply a request body with this method.このメソッドでリクエストボディを指定しないでください。

Response応答

If successful, this method returns an Events resource in the response body.成功した場合、このメソッドはレスポンスボディにEventsリソースを返します。

Examples

Note: The code examples available for this method do not represent all supported programming languages (see the client libraries page for a list of supported languages).注:このメソッドで使用可能なコード例は、サポートされているすべてのプログラミング言語を表しているわけではありません(サポートされている言語のリストについては、クライアントライブラリのページ参照してください)。

Java

Uses the Java client library.Javaクライアントライブラリを使用します

import com.google.api.services.calendar.Calendar;
import com.google.api.services.calendar.model.Event;
// ...
// Initialize Calendar service with valid OAuth credentials
Calendar service = new Calendar.Builder(httpTransport, jsonFactory, credentials)
    .setApplicationName("applicationName").build();
// Move an event to another calendar
Event updatedEvent =
    service.events().move('primary', "eventId", "destinationCalendarId").execute();
System.out.println(updatedEvent.getUpdated());

Python

Uses the Python client library.Pythonクライアントライブラリを使用します

# First retrieve the event from the API.
updated_event = service.events().move(
    calendarId='primary', eventId='eventId',
    destination='destinationCalendarId').execute()
# Print the updated date.
print updated_event['updated']

PHP

Uses the PHP client library.PHPクライアントライブラリを使用します

$result = $service->events->move('primary', 'eventId', 'destinationCalendarId');
// Print the updated date.
echo $result->getUpdated();

Rubyルビー

Uses the Ruby client library.Rubyクライアントライブラリを使用します

result = client.move_event('primary', 'eventId', 'destinationCalendarId')
print result.updated

Try it!それを試してみてください!

Use the APIs Explorer below to call this method on live data and see the response. 以下のAPI Explorerを使用して、ライブデータに対してこのメ??ソッドを呼び出して応答を確認してください。

関連記事

スポンサーリンク

神奈川県の電車路線、駅の一覧

ホームページ製作・web系アプリ系の製作案件募集中です。

上に戻る