2024-06-05 12:19:46 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 3
|
|
|
|
---
|
|
|
|
|
|
|
|
# Get list calendar
|
|
|
|
Gets a calendar from the user's list by ID
|
|
|
|
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
`Function GetListCalendar(Val Token, Val Calendar) Export`
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
| Token | --token | String | Token |
|
|
|
|
| Calendar | --calendar | String | Calendar ID |
|
|
|
|
|
|
|
|
|
2024-06-06 14:33:52 +02:00
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Google
|
2024-06-05 12:19:46 +02:00
|
|
|
|
2024-07-10 13:05:58 +02:00
|
|
|
<br/>
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
```bsl title="Code example"
|
2024-07-10 13:24:11 +02:00
|
|
|
|
|
|
|
Response = OPI_GoogleCalendar.GetListCalendar(Token, "55868c32be16935f0..."); //Map
|
2024-06-05 12:19:46 +02:00
|
|
|
Response = OPI_Tools.JSONString(Response); //String
|
|
|
|
```
|
2024-07-10 10:59:55 +02:00
|
|
|
|
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
|
|
|
oint gcalendar GetListCalendar --token %token% --calendar %calendar%
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-07-10 13:11:17 +02:00
|
|
|
{
|
2024-06-05 12:19:46 +02:00
|
|
|
"conferenceProperties": {
|
|
|
|
"allowedConferenceSolutionTypes": [
|
|
|
|
"hangoutsMeet"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"accessRole": "owner",
|
|
|
|
"foregroundColor": "#000000",
|
|
|
|
"backgroundColor": "#ffd800",
|
|
|
|
"colorId": "6",
|
|
|
|
"description": "TestDescription",
|
|
|
|
"summary": "TestCalendar (change.)",
|
|
|
|
"defaultReminders": [],
|
|
|
|
"timeZone": "UTC",
|
|
|
|
"id": "f0fad8c7db43ef0adb71cbf035eb08cf80d8f8d51ba31fa86f4d5680dc2e9725@group.calendar.google.com",
|
|
|
|
"etag": "\"1708423563386000\"",
|
|
|
|
"kind": "calendar#calendarListEntry"
|
|
|
|
}
|
|
|
|
```
|