1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-07 15:20:39 +02:00

44 lines
947 B
Markdown
Raw Normal View History

---
sidebar_position: 1
---
# Get description events
<br/>
2024-07-10 13:58:29 +03:00
`Function GetEventDescription() Export`
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
Returns: Map Of KeyAndValue - Empty event template
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```sh title="CLI command example"
oint gcalendar GetEventDescription
```
```json title="Result"
EventMap = New Map;
EventMap.Insert("Description", ""); // Event description
EventMap.Insert("Title", "New event"); // Title events
EventMap.Insert("Venue", ""); // String description of the venue of the event
EventMap.Insert("StartDate", CurrentSessionDate()); // Date of start events
EventMap.Insert("EndDate", EventMap["StartDate"] + 3600); // Date of end events
EventMap.Insert("ArrayOfAttachmentURLs", New Map); // Key - name, Value - URL to file
EventMap.Insert("SendNotifications", True); // Indication of sending notifications to participants
```