# [Google Calender](https://developers.google.com/calendar/api/v3/reference)
## OAuth 2.0
- Client ID
- Client secret

### How to get
- Go to [Google console](https://console.cloud.google.com/apis/api/calendar-json.googleapis.com/credentials)

### Example data for create event
```json
{
  "start": "2021-12-16T07:00:00+01:00",
  "end": "2021-12-16T20:00:00+01:00",
  "timeZone": "Europe/Prague",
  "summary": "TITLE",
  "userName": "asdrvt15e21as51ce",
  "calenderId": "c_ou4db6jnke42obshctiodai4c0@group.calendar.google.com"
}
```
