CalendarEvent
Overview
This is an entity which contains information about calendar events in the platform. It is a supporting entity for UserAttendance.
Only course related events are included.
Important: This end-point can only be used when customer is using the attendance system that is connected to calendar events (Attendance Lite), which is not part of itslearning standard offering. If the attendance system is enabled on your site and need the respective OData end-points enabled for you, please contact your itslearning account manager or technical consultant.
Relationships
This entity has relation with the following entities:
- Course
- UserAttendance
Diagram
Entity Details
Name | Data type | Nullable | Description |
---|---|---|---|
CalendarEventId | Edm.Int32 | false | Identifier of the calendar event |
ExternalId | Edm.Int32 | true | External calendar event id/sync key (if exists) |
CalendarEventTitle | Edm.String | true | Title of the calendar event |
StartDate | Edm.DateTime | false | Start date and time set on the calendar event |
EndDate | Edm.DateTime | false | End date and time set on the calendar event |
CourseId | Edm.Int32 | false | Related course identifier |
IsAttendanceEnabled | Edm.Boolean | false | Flag if attendance tracking is enabled for the event. |
T_ModifiedDate | Edm.DateTime | false | Date and time the entity was last modified in data warehouse |
Request body
https:
//reporting.itslearning.com/odata/engine7/CalendarEvents?$top=10
Response body - JSON (default output format)
{
"odata.metadata"
:
"https://reporting.itslearning.com/odata/site/$metadata#CalendarEvents"
,
"value"
:[
{
"CalendarEventId"
:
4
,
"CourseId"
:
24
,
"CalendarEventTitle"
:
"fsdf"
,
"StartDate"
:
"2020-04-22T06:00:00"
,
"EndDate"
:
"2020-04-22T14:00:00"
,
"ExternalId"
:
null
,
"IsAttendanceEnabled"
:
false
,
"T_ModifiedDate"
:
"2024-07-17T14:03:00"
},{
"CalendarEventId"
:
5
,
"CourseId"
:
24
,
"CalendarEventTitle"
:
"jjjk"
,
"StartDate"
:
"2020-04-17T06:00:00"
,
"EndDate"
:
"2020-04-17T14:00:00"
,
"ExternalId"
:
null
,
"IsAttendanceEnabled"
:
false
,
"T_ModifiedDate"
:
"2024-07-17T14:03:00"
},{
"CalendarEventId"
:
6
,
"CourseId"
:
31
,
"CalendarEventTitle"
:
""
,
"StartDate"
:
"2020-05-29T07:00:00"
,
"EndDate"
:
"2020-05-29T15:00:00"
,
"ExternalId"
:
null
,
"IsAttendanceEnabled"
:
false
,
"T_ModifiedDate"
:
"2024-07-17T14:03:00"
},{
"CalendarEventId"
:
8
,
"CourseId"
:
31
,
"CalendarEventTitle"
:
"aaa"
,
"StartDate"
:
"2020-05-06T07:00:00"
,
"EndDate"
:
"2020-05-06T15:00:00"
,
"ExternalId"
:
null
,
"IsAttendanceEnabled"
:
false
,
"T_ModifiedDate"
:
"2024-07-17T14:03:00"
}
]
}