--- 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
:::tip Method at API documentation: [calendar.settings.get](https://apidocs.bitrix24.ru/api-reference/calendar/calendar-settings-get.html) :::
```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); ```