Overview

Add calendar configurations in the database and return the uid and the publish key

Request

POST /Calendar/getICalConfigurationsUID

Request Arguments

Name Type Description Required
calendarConfigurations Array The list of calendar configurations that needs to be stored in the database True

Response

The response will be an object containing the following fields:
Name Type Description
key string The publish key
calendarConfigurationUID string The UID where calendars configurations are stored in the database

Request Example

[
    {
        "id": "f75a25c6-eeb8-11eb-abe8-0242ac140005",
        "calendarId": "f75a25c6-eeb8-11eb-abe8-0242ac140005",
        "userId": "1",
        "teamId": ""
    },
    {
        "id": "49cfb786-ef8a-11eb-a8a5-0242ac140005",
        "calendarId": "49cfb786-ef8a-11eb-a8a5-0242ac140005",
        "userId": "1",
        "teamId": ""
    },
]

Response Example

{
    calendarConfigurationUID: "546fcdb6-f11d-11eb-83b3-0242ac140004"
    key: "c056558a-e941-11eb-basa-0242ac140005"
}

Change Log

Version Change
v11_14 Added /Calendar/getICalConfigurationsUID POST endpoint.