CalendarEvent
Overview
This is an entity which contains information about calendar events in the platform.
Only course related events are included.
Important: This data is only available for customers using the Attendance Lite for higher education (not part of default itslearning services) and getting attendance data through OData is enabled.
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"
}
]
}