PUT api/2.0/calendar/caldavevent
Updates the existing CalDav event in the calendar with the ID specified in the request.
Name |
Description |
Type |
Example |
calendarId
sent in body
|
Calendar ID
|
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"
]
}
This method doesn't return any data.