Calendar-api

From 탱이의 잡동사니
Jump to navigation Jump to search

Overview

Calendar API 내용 정리.

Google calendar

Event

https://developers.google.com/google-apps/calendar/v3/reference/events

CalendarList

Calendar list sample.

{
  "kind": "calendar#calendarListEntry",
  "etag": etag,
  "id": string,
  "summary": string,
  "description": string,
  "location": string,
  "timeZone": string,
  "summaryOverride": string,
  "colorId": string,
  "backgroundColor": string,
  "foregroundColor": string,
  "hidden": boolean,
  "selected": boolean,
  "accessRole": string,
  "defaultReminders": [
    {
      "method": string,
      "minutes": integer
    }
  ],
  "notificationSettings": {
    "notifications": [
      {
        "type": string,
        "method": string
      }
    ]
  },
  "primary": boolean,
  "deleted": boolean
}

See also

References

<references />