将活动移至其他日历,即更改活动的组织者。请注意,只能移动 default
事件;无法移动“birthday
”、“focusTime
”、“fromGmail
”、“outOfOffice
”和“workingLocation
”事件。
立即试用或查看示例。
请求
HTTP 请求
POST https://www.googleapis.com/calendar/v3/calendars/calendarId/events/eventId/move
参数
参数名称 | 值 | 说明 |
---|---|---|
路径参数 | ||
calendarId |
string |
活动当前所在的来源日历的日历标识符。 |
eventId |
string |
事件标识符。 |
必需的查询参数 | ||
destination |
string |
活动要移动到的目标日历的日历标识符。 |
可选的查询参数 | ||
sendNotifications |
boolean |
已弃用。请改用 sendUpdates。 是否要发送有关活动组织者变更的通知。请注意,即使您将值设置为 false ,系统可能仍会发送某些电子邮件。默认值为 false 。
|
sendUpdates |
string |
应收到活动组织者变更通知的邀请对象。
可接受的值包括:
|
授权
此请求需要获得以下至少一个范围的授权:
范围 |
---|
https://www.googleapis.com/auth/calendar |
https://www.googleapis.com/auth/calendar.events |
如需了解详情,请参阅身份验证和授权页面。
请求正文
使用此方法时请勿提供请求正文。
响应
如果成功,此方法将在响应正文中返回一项 Events 资源。
示例
注意:此方法的代码示例并未列出所有受支持的编程语言(请参阅客户端库页面,查看受支持的语言列表)。
Java
使用 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
使用 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
使用 PHP 客户端库。
$result = $service->events->move('primary', 'eventId', 'destinationCalendarId'); // Print the updated date. echo $result->getUpdated();
Ruby
使用 Ruby 客户端库。
result = client.move_event('primary', 'eventId', 'destinationCalendarId') print result.updated
试试看!
使用下面的 API Explorer 对实际数据调用此方法,然后查看响应。