1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-05-29 23:17:45 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Calendars-management/Get-calendar-settings-structure.mdx
Vitaly the Alpaca (bot) df71db738d Main build (Jenkins)
2025-01-27 21:50:57 +03:00

47 lines
1.1 KiB
Plaintext
Vendored

---
sidebar_position: 8
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get calendar settings structure
Gets the structure of the default calendar settings
`Function GetCalendarSettingsStructure(Val URL, Val Token = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
| Token | --token | String | ✖ | Access token, when app auth method used |
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [calendar.settings.get](https://apidocs.bitrix24.ru/api-reference/calendar/calendar-settings-get.html)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/h0m...";
Result = OPI_Bitrix24.GetCalendarSettingsStructure(URL);
URL = "b24-ar17wx.bitrix24.by";
Token = "b4c59767006e9f06006b12e400000001000...";
Result = OPI_Bitrix24.GetCalendarSettingsStructure(URL, Token);
```