2024-06-04 20:55:01 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 1
|
|
|
|
---
|
|
|
|
|
|
|
|
# Get description events
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*Function GetEventDescription() Export*
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
|
|
|
|
|
|
|
|
Returns: Key-Value Pair - Empty event template
|
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
|
|
|
oint gcalendar GetEventDescription
|
|
|
|
|
2024-06-05 11:58:00 +02:00
|
|
|
|
2024-06-04 20:55:01 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
|
|
|
|
|
|
EventMatch = New Map;
|
|
|
|
EventMatch.Insert("Description", ""); // Event description
|
|
|
|
EventMatch.Insert("Title", "New event"); // Title events
|
|
|
|
EventMatch.Insert("Venue", ""); // String description of the venue of the event
|
|
|
|
EventMatch.Insert("StartDate", CurrentSessionDate()); // Date of start events
|
|
|
|
EventMatch.Insert("EndDate", EventMatch["StartDate"] + 3600); // Date of end events
|
|
|
|
EventMatch.Insert("ArrayOfAttachmentURLs", New Map); // Key - name, Value - URL to file
|
|
|
|
EventMatch.Insert("SendNotifications", True); // Indication of sending notifications to participants
|
|
|
|
|
|
|
|
```
|