PUT api/2.0/calendar/caldavevent
Create/update the existing caldav event in the selected calendar
Name |
Description |
Type |
Example |
calendarId
sent in body
|
ID of the calendar where the event belongs
|
string
|
some text
|
uid
sent in body
|
Event uid
|
string
|
some text
|
alert
sent in body
|
Event notification type
|
number
|
1234
|
responsibles
sent in body
|
Task responsibles
|
System.Collections.Generic.List`1[System.String]
|
|
PUT api/2.0/calendar/caldavevent
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"calendarId": "some text",
"uid": "some text",
"alert": 1234,
"responsibles": [
"some text"
]
}