mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-01-02 03:38:55 +02:00
41 lines
725 B
Markdown
41 lines
725 B
Markdown
|
---
|
||
|
sidebar_position: 4
|
||
|
---
|
||
|
|
||
|
# Remove calendar from list
|
||
|
Removes a calendar from the user's list
|
||
|
|
||
|
|
||
|
*Function DeleteCalendarFromList(Val Token, Val Calendar) Export*
|
||
|
|
||
|
| Parameter | CLI option | Type | Destination |
|
||
|
|-|-|-|-|
|
||
|
| Token | --token | String | Token |
|
||
|
| Calendar | --calendar | String | Calendar ID |
|
||
|
|
||
|
|
||
|
Returns: Key-Value Pair - serialized JSON response from Google
|
||
|
|
||
|
```bsl title="Code example"
|
||
|
|
||
|
|
||
|
Response = OPI_GoogleCalendar.DeleteCalendarFromList(Token, "55868c32be16935f0..."); //Map
|
||
|
Response = OPI_Tools.JSONString(Response); //String
|
||
|
|
||
|
|
||
|
|
||
|
```
|
||
|
|
||
|
```sh title="CLI command example"
|
||
|
|
||
|
oint gcalendar DeleteCalendarFromList --token %token% --calendar %calendar%
|
||
|
|
||
|
```
|
||
|
|
||
|
|
||
|
```json title="Result"
|
||
|
|
||
|
""
|
||
|
|
||
|
```
|