일정을 다른 캘린더로 이동합니다(예: 일정의 주최자 변경). 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 클라이언트 라이브러리를 사용합니다.
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
result = client.move_event('primary', 'eventId', 'destinationCalendarId') print result.updated
사용해 보기
아래의 API 탐색기를 사용하여 실시간 데이터를 대상으로 이 메소드를 호출하고 응답을 확인해 보세요.