Overview
Update calendar event
Request
POST /Calendar/updateRecord/recordId
Response
The response will be an object containing the following fields:
| Name |
Type |
Description |
|
agenda_event_template
|
string
|
Agenda event template
|
|
assignedUserName
|
string
|
Assigned user name
|
|
attendeeUserName
|
Array
|
List of all atendees
|
|
calendarId
|
string
|
Calendar ID
|
|
color
|
string
|
Event color
|
|
day_event_template
|
string
|
Day event template
|
|
dbclickRecordId
|
string
|
The id of the clicked record
|
|
end
|
string
|
End date
|
|
eventUsers
|
Array
|
Event users ID's
|
|
event_tooltip
|
string
|
Event tooltip
|
|
isAllDay
|
bool
|
Is all day flag
|
|
module
|
string
|
The module of event record
|
|
month_event_template
|
string
|
Month event template
|
|
name
|
string
|
Name of the event
|
|
recordId
|
string
|
The record event ID
|
|
schedulermonth_event_template
|
string
|
Scheduler month event template
|
|
start
|
string
|
Start date
|
|
timeline_event_template
|
string
|
Timeline event template
|
|
title
|
string
|
The title of the event
|
|
uid
|
string
|
UUID
|
|
week_event_template
|
string
|
Week event template
|
Response Example
{
agenda_event_template: "c1 "
assignedUserName: "Adam Smith"
attendeeUserName: [{id: "1", name: "Adam Smith"}]
calendarId: "330cfcba-b7d2-11eb-8bf0-0242ac140004"
color: "#c0edff"
day_event_template: "c1 "
dbclickRecordId: "241c619e-b4b9-11eb-8d6a-0242ac140004"
end: "2021-05-12T00:30:00+03:00"
eventUsers: ["1"]
event_tooltip: "c1 "
id: null
isAllDay: false
kendoEvent: ""
module: "Calls"
month_event_template: "c1 "
name: "c1"
recordId: "241c619e-b4b9-11eb-8d6a-0242ac140004"
schedulermonth_event_template: "c1 "
start: "2021-05-11T00:00:00+03:00"
timeline_event_template: "c1 "
title: "c1"
uid: "bbf3e2f2-30ba-4997-ae75-231ae225978e"
week_event_template: "c1 "
}
Change Log
| Version |
Change |
|
v11_14
|
Added /Calendar/modules POST endpoint.
|