mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-03-07 15:20:39 +02:00
40 lines
617 B
Markdown
40 lines
617 B
Markdown
|
---
|
||
|
sidebar_position: 5
|
||
|
---
|
||
|
|
||
|
# Delete calendar
|
||
|
Deletes a calendar by ID
|
||
|
|
||
|
|
||
|
*Function DeleteCalendar(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.DeleteCalendar(Token, "55868c32be16935f0...");
|
||
|
|
||
|
|
||
|
|
||
|
```
|
||
|
|
||
|
```sh title="CLI command example"
|
||
|
|
||
|
oint gcalendar DeleteCalendar --token %token% --calendar %calendar%
|
||
|
|
||
|
```
|
||
|
|
||
|
|
||
|
```json title="Result"
|
||
|
|
||
|
""
|
||
|
|
||
|
```
|