PUT api/2.0/calendar/icstodo
Updates the existing task with the parameters specified in the request
Name |
Description |
Type |
Example |
todoId
sent in body
|
Task ID
|
string
|
some text
|
calendarId
sent in body
|
ID of the calendar where the task belongs
|
string
|
some text
|
ics
sent in body
|
Task in iCal format
|
string
|
some text
|
fromCalDavServer
sent in body
|
bool flag says that request from caldav server
|
Bool value
|
true
|
PUT api/2.0/calendar/icstodo
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"todoId": "some text",
"calendarId": "some text",
"ics": "some text",
"fromCalDavServer": true
}
application/json
{
"status": 0,
"response": [
{
"owner": {
"objectId": "2fdfe577-3c26-4736-9df9-b5a683bb8520",
"name": "Valery Zykov"
},
"start": "2021-01-22T09:11:56.7513358Z",
"description": "Todo Description",
"title": "Todo Name",
"objectId": "1",
"sourceId": "calendarID",
"completed": "0001-01-01T00:00:00.0000000Z"
}
]
}
text/xml
<result>
<status>0</status>
<response>
<owner>
<objectId>2fdfe577-3c26-4736-9df9-b5a683bb8520</objectId>
<name>Valery Zykov</name>
</owner>
<start>2021-01-22T09:11:56.7513358Z</start>
<description>Todo Description</description>
<title>Todo Name</title>
<objectId>1</objectId>
<sourceId>calendarID</sourceId>
<completed>0001-01-01T00:00:00.0000000Z</completed>
</response>
</result>