Attributes

string

title

The announcement's headline

string

text

The announcement's content, in Markdown format

string

image_url

URL to the announcement image, if available

datetime

published_at

Time of publication

writable boolean

visited

Whether the announcement has been seen by the current user

Relationships

course

Routes

GET /api/v2/announcements

Retrieve latest announcements

GET /api/v2/announcements/:id

Retrieve announcement details

PATCH /api/v2/announcements/:id

Change article information

Filters

course

Only return announcements belonging to the course with this UUID

global

Include global announcements

language

Load the announcements in this language (falls back to the default language if a translation is not available)

Attributes

string

title

The public title of this channel

string

color

Hexadecimal RGB color values as known from CSS, e.g. FF0000 for red

integer

position

Relative position in the channel list

string

description

A localized long-form text describing the channel contents in greater detail. Picks an available language based on the Accept-Language header.

string

mobile_image_url

URL to the mobile-friendly channel image

member-only string

stage_logo_url

URL to the channel logo

member-only string

stage_image_url

URL to the stage image

member-only string

stage_statement

A short text describing the channel contents

member-only hash

stage_stream

Media info about the stage stream, if it exists

{
  "hd_url": "string",
  "sd_url": "string",
  "hls_url": "string",
  "hd_size": "integer",
  "sd_size": "integer",
  "thumbnail_url": "string"
}

Relationships

includable

courses

Routes

GET /api/v2/channels

List all channels on this platform

GET /api/v2/channels/:id

Retrieve information about a channel

Attributes

boolean

visible

Whether this cluster is visible to users

string

title

The localized cluster title

Routes

GET /api/v2/clusters

List all clusters

Attributes

string

type

The type of event (one of course_start, section_start, item_submission_publishing, item_submission_deadline)

string

title

The name of the referenced resource (a course, section or item)

datetime

date

Date and time when this event occurs

Relationships

course

Routes

GET /api/v2/course-dates

Returns next course dates (assignments, deadlines etc.) relevant to the user

Filters

course

Only return dates for the course with this UUID

Attributes

array

features

List of feature flipper's name

[
  "string"
]

Routes

GET /api/v2/course-features/:id

Get all course features

Attributes

string

title

The item's title

integer

position

The item's position within its section

datetime

deadline

The date at which the item must have been finished by the user

string

content_type

The type of item: one of quiz, video, rich_text, lti_exercise

string

icon

The icon for this item (reflecting the icon in the xikolo-font)

string

icon

The icon for this item (reflecting the icon in the xikolo-font)

string

exercise_type

The rank of this exercise: one of main, bonus, selftest, survey

float

max_points

The number of points (with decimal) that can be achieved with this item

boolean

optional

Whether this item is optional

boolean

proctored

Whether this item is only accessible with proctoring if certificate was booked

boolean

accessible

Whether the item's content can be accessed at this time

integer

time_effort

The estimated time needed to complete the item

writable boolean

visited

Whether the current user has visited this item before

Relationships

includable

content

section

course

Routes

GET /api/v2/course-items

List all items for a given course section

GET /api/v2/course-items/:id

Retrieve a single item

PATCH /api/v2/course-items/:id

Update an item

Filters

section

Only return items belonging to the section with this UUID

course

Only return items belonging to the course with this UUID

content_type

Only return items of this content type (e.g. quiz or video)

Attributes

hash

main_exercises

The course's main exercise statistics for user

{
  "exercises_available": "integer",
  "exercises_taken": "integer",
  "points_possible": "float",
  "points_scored": "float"
}
hash

selftest_exercises

The course's selftest exercise statistics for user

{
  "exercises_available": "integer",
  "exercises_taken": "integer",
  "points_possible": "float",
  "points_scored": "float"
}
hash

bonus_exercises

The course's bonus exercise statistics for user

{
  "exercises_available": "integer",
  "exercises_taken": "integer",
  "points_possible": "float",
  "points_scored": "float"
}
hash

visits

The course's item visit statistics for user

{
  "items_available": "integer",
  "items_visited": "integer",
  "visits_percentage": "integer"
}

Relationships

includable

section_progresses

Routes

GET /api/v2/course-progresses/:id

Get course progress

Attributes

string

title

The section's title

string

description

A text describing the section's content

integer

position

The sections's position within its course

datetime

start_at

The date when this section becomes available

datetime

end_at

The date when access to this section is closed

boolean

accessible

Whether the section's content can be accessed at this time

boolean

parent

Whether the section is a parent section of alternative sections

Relationships

course

includable

items

Routes

GET /api/v2/course-sections

List all sections for a given course

GET /api/v2/course-sections/:id

Retrieve information about a section

Filters

required

course

Only return items belonging to the course with this UUID

Attributes

string

title

The course name

string

slug

A short name for use in URLs etc.

datetime

start_at

Date and time when this course starts

datetime

end_at

Date and time when this course ends

string

abstract

A short text describing the course contents

member-only string

description

A long-form text describing the course contents in greater detail

string

image_url

URL to the course image

array

images

URLs to the course image in various sizes, with the exact dimensions of each image. \ Clients can use these for loading the optimal size of an image depending on the viewport size.

[
  {
    "max_width": "integer",
    "max_height": "integer",
    "url": "string"
  }
]
string

language

The language in which the course will be held

string

status

Current state of the course: one of external, preparation, announced, preview, active or self-paced

hash

classifiers

A hash of classifiers for this course (used for categorization), mapping from names to arrays of assigned groups in these categories.

{
  "any": "any"
}
string

teachers

A string, listing the names of teachers or a short title for the teaching team

boolean

accessible

Whether the course content is already accessible

boolean

enrollable

Whether any user can enroll in this course

boolean

hidden

Whether this course is hidden (i.e. not visible to guests and regular users)

boolean

external

Whether this course is hosted on an external platform

string

external_url

URL to the external course, if it is hosted on another platform

string

policy_url

URL to a document detailing any policies that the user has to agree to before enrolling

hash

certificates

A hash with information about the certificates that can be gained in this course.

{
  "confirmation_of_participation": {
    "available": "boolean",
    "threshold": "integer"
  },
  "record_of_achievement": {
    "available": "boolean",
    "threshold": "integer"
  },
  "qualified_certificate": {
    "available": "boolean"
  }
}
boolean

on_demand

Whether this course is available for on_demand/reactivation option

array

learning_goals

What the learner is expected to gain from the course

[
  "string"
]
array

target_groups

The groups at which the course is targeted

[
  "string"
]
boolean

show_on_list

Whether this course should be shown on the course list

member-only hash

teaser_stream

Media info about the teaser stream, if it exists

{
  "hd_url": "string",
  "sd_url": "string",
  "hls_url": "string",
  "hd_size": "integer",
  "sd_size": "integer",
  "thumbnail_url": "string"
}

Relationships

includable

channel

includable

user_enrollment

includable

sections

documents

progress

last_visit

dates

repetition_suggestions

Routes

GET /api/v2/courses

List all courses

GET /api/v2/courses/:id

Get information about a course

Filters

channel

Only return courses belonging to the channel with this UUID

document

Only return courses belonging to the document with this UUID

Attributes

string

title

The title of the document

string

description

A short description of the document contents

array

tags

A lists of tags ot the document

[
  "string"
]
boolean

public

flag indication whether a document is available on the platform

Relationships

includable

localizations

includable

courses

Routes

GET /api/v2/documents

List all documents

GET /api/v2/documents/:id

Retrieve information about a document

Filters

course

Only return documents belonging to the course with this UUID

tag

Only return documents that are tagged with this tag

language

Only return documents that are available in this language

Attributes

hash

certificates

A hash with information about the achieved certificates (confirmation_of_participation, record_of_achievement, qualified_certificate): Every value is either a URL pointing to the certificate file, or null

{
  "confirmation_of_participation": "string",
  "record_of_achievement": "string",
  "qualified_certificate": "string"
}
writable boolean

completed

Whether or not the user completed this course

boolean

reactivated

Whether this enrollment has an active course reactivation, i.e. when the user has paid for taking the full course, with homework and exam, after the regular course time has ended

boolean

proctored

Whether the user booked a certificate for this course

datetime

created_at

The date and time when this enrollment was created

Relationships

course

progress

Routes

GET /api/v2/enrollments

List all enrollments

POST /api/v2/enrollments

Create enrollments

GET /api/v2/enrollments/:id

Get the enrollment

PATCH /api/v2/enrollments/:id

Update the enrollment

DELETE /api/v2/enrollments/:id

Delete the enrollment

Attributes

writable string

identifier

The identifier of the experiment. Required for POST.

Relationships

course

Routes

POST /api/v2/experiment-assignments

Create experiment assignment

Attributes

array

features

List of feature flipper's names

[
  "string"
]

Routes

GET /api/v2/features/:id

Get global features

Attributes

datetime

visit_date

The date of the last item visit

Relationships

item

Routes

GET /api/v2/last-visits/:id

Get last visit information

Attributes

string

instructions

A text with detailed explanation what this task will entail

integer

weight

A multiplier (integer) for the LTI score (a number between 0 and 1) to achieve the final score for this exercise

integer

allowed_attempts

The maximum number of attempts allowed per user (0 is infinite)

string

launch_url

URL to launch the LTI tool

Routes

GET /api/v2/lti-exercises/:id

Retrieve information about a LTI exercise

Attributes

writable string

title

The title of the topic

writable string

abstract

The abstract of the topic

datetime

created_at

The timestamp at which the topic was created

integer

reply_count

The number of replies to a topic

boolean

closed

The state of the topic (boolean)

writable hash

meta

Meta information about the topic (e.g. the video timestamp)

{
  "any": "any"
}

Relationships

course

item

Routes

GET /api/v2/pinboard-topics

List all topics

POST /api/v2/pinboard-topics

Create a topic

Filters

required

item

Only return topics belonging to the item with this UUID

Attributes

string

type

The event type (e.g. pinboard.question.new)

string

title

A description of the event (formatted as Markdown)

string

preview_html

A short HTML snippet to show as preview of the related content

datetime

created_at

The time when the event was logged

Relationships

course

collab_space

Routes

GET /api/v2/platform-events

Returns events for the user, can be filtered to course or learning room context

Filters

course

collab_space

only_collab_space_related

Attributes

string

text

The question text

string

explanation

A short text explaining the solution (may be null when this is kept secret)

string

type

The question type (one of select_multiple, select_one, or free_text)

integer

position

The question's position within its quiz

float

max_points

The maximum number of points (with decimal) that can be achieved with this question

boolean

shuffle_options

Whether the options should be shown in random order

boolean

eligible_for_recap

Whether the question is eligible for a quiz recap

array

options

An array of possible options

[
  {
    "id": "string",
    "position": "integer",
    "text": "string",
    "correct": "boolean",
    "explanation": "string"
  }
]

Relationships

quiz

Routes

GET /api/v2/quiz-questions

Retrieve all questions for a given quiz

GET /api/v2/quiz-questions/:id

Retrieve a quiz question by ID

Filters

required

quiz

Only return questions belonging to the quiz with this UUID

Attributes

datetime

created_at

The date and time when submission data was first saved for this user and quiz

datetime

submitted_at

The date and time when the user finalized this submission

writable boolean

submitted

Whether this submission has been finalized by the user

float

points

The total number of points (with decimal) the user received

writable hash

answers

A hash of question IDs mapping to an array of submitted answer objects for this question

{
  "any": "any"
}

Relationships

course

quiz

user

Routes

POST /api/v2/quiz-submissions

Start a quiz submission

GET /api/v2/quiz-submissions/:id

Load a quiz submission

PATCH /api/v2/quiz-submissions/:id

Update a quiz submission

Attributes

string

instructions

Textual instructions for the quiz taker in Markdown format

integer

time_limit

The time (in seconds) that the user can take to finish the quiz, or zero if unlimited

integer

allowed_attempts

The number of allowed attempts the user has to finish the quiz, or zero if unlimited

Relationships

includable

questions

includable

newest_user_submission

Routes

GET /api/v2/quizzes/:id

Retrieve information about a quiz

Attributes

string

title

The repetition suggestion's title

string

content_type

The type of item: one of quiz, video, rich_text, lti_exercise

string

icon

The icon for this item (reflecting the icon in the xikolo-font)

string

exercise_type

The rank of this exercise: one of main, bonus, selftest, survey

float

user_points

The (maximum) number of points (with decimal) that the user scored for this item

float

max_points

The number of points (with decimal) that can be achieved with this item

integer

percentage

The percentage of scored points (with regard to the max_points) for this item

Routes

GET /api/v2/repetition-suggestions

List all repetition suggestions for the current user

Filters

required

course

Only return repetition suggestions belonging to the course with this UUID

Attributes

string

text

The text content (formatted as Markdown) to be shown to the user

Routes

GET /api/v2/rich-texts/:id

Retrieve a single text item

Attributes

string

title

The section's title

string

description

A text describing the section's content

integer

position

The sections's position within its course

boolean

available

Whether the section was unlocked yet

boolean

parent

Whether the section is a parent section

hash

main_exercises

The sections's main exercise statistics for user

{
  "exercises_available": "integer",
  "exercises_taken": "integer",
  "points_possible": "float",
  "points_scored": "float"
}
hash

selftest_exercises

The sections's selftest exercise statistics for user

{
  "exercises_available": "integer",
  "exercises_taken": "integer",
  "points_possible": "float",
  "points_scored": "float"
}
hash

bonus_exercises

The sections's bonus exercise statistics for user

{
  "exercises_available": "integer",
  "exercises_taken": "integer",
  "points_possible": "float",
  "points_scored": "float"
}
hash

visits

The sections's item visit statistics for user

{
  "items_available": "integer",
  "items_visited": "integer",
  "visits_percentage": "integer"
}
array

items

The sections's item visit statistics for user

[
  {
    "id": "string",
    "user_state": "string",
    "max_points": "float",
    "user_points": "float",
    "time_effort": "integer",
    "completed": "boolean"
  }
]

Relationships

course_progress

Routes

GET /api/v2/section-progresses

List all section progresses for a given course

Filters

required

course

Only return sections belonging to the course with this UUID

Attributes

string

identifier

The cue identifier, mainly used as position for ordering

string

text

The actual text of the subtitle cue

string

start

The start time of the subtitle cue

string

end

The end time of the subtitle cue

string

settings

The display configuration of the subtitle cue

Routes

GET /api/v2/subtitle-cues

List all subtitle cues for video

Filters

required

track

Only return subtitle cues belonging to the subtitle track with this UUID

Attributes

string

language

The subtitle language

boolean

created_by_machine

Whether the subtitles were created by a machine (or human if not)

string

vtt_url

URL to the corresponding WebVTT file

Relationships

video

includable

cues

Routes

GET /api/v2/subtitle-tracks

List all subtitles for video

Filters

required

video

Only return subtitles belonging to the video with this UUID

language

Only return subtitles with this language

Attributes

writable string

title

The title of the ticket. Required for POST.

writable string

report

The description of the ticket. Required for POST.

writable string

topic

The topic of the ticket, either technical, reactivation, or course. If course, a relationship must be passed as well. Required for POST.

writable string

language

The language of the user's client. Required for POST.

writable string

mail

The user's email. Required for POST if no authorization header is sent, otherwise ignored and extracted automatically.

writable string

url

An optional URL.

writable string

data

An optional data string, usually some client information formatted as a user-agent.

Relationships

course

Routes

POST /api/v2/tickets

Store helpdesk tickets

Attributes

writable hash

user

A hash describing the user causing this event. Required keys: uuid - the user's UUID.

{
  "uuid": "string"
}
writable hash

verb

A hash describing the kind of action that is being tracked. Required keys: type - one of the predefined constants, e.g. VIDEO_PLAY.

{
  "type": "string"
}
writable hash

resource

A hash describing the object that was acted upon. Required keys: type, uuid.

{
  "uuid": "string",
  "type": "string"
}
writable datetime

timestamp

Full date and time of the event. Example: 2015-09-24T10:06:49+02:00

writable hash

result

A hash of information describing the result of the action that was executed. Arbitrary keys allowed.

{
  "any": "any"
}
writable hash

context

A hash of additional context information relevant to this element. Arbitrary keys allowed.

{
  "any": "any"
}

Routes

POST /api/v2/tracking-events

Store tracking events

Attributes

string

name

The user's display name

string

avatar_url

Relationships

includable

profile

Routes

GET /api/v2/users/:id

Load information about a user (use "me" as ID if the current user's ID is not available)

Attributes

string

summary

A short description of the video contents

integer

duration

The video's duration in seconds, if known

hash

single_stream

Media info about the single stream (picture-in-picture), if it exists. Clients can choose to use this version instead of combining the lecturer and slides streams.

{
  "hd_url": "string",
  "sd_url": "string",
  "hls_url": "string",
  "hd_size": "integer",
  "sd_size": "integer",
  "thumbnail_url": "string"
}
hash

lecturer_stream

Media info about the lecturer stream, if it exists.

{
  "hd_url": "string",
  "sd_url": "string",
  "hls_url": "string",
  "hd_size": "integer",
  "sd_size": "integer",
  "thumbnail_url": "string"
}
hash

slides_stream

Media info about the slides stream, if it exists.

{
  "hd_url": "string",
  "sd_url": "string",
  "hls_url": "string",
  "hd_size": "integer",
  "sd_size": "integer",
  "thumbnail_url": "string"
}
string

slides_url

URL to the lecture slides (PDF), if available

integer

slides_size

Size of the lecture slides in bytes, if available

string

audio_url

URL to the audio recording (MP3), if available

integer

audio_size

Size of the audio recording in bytes, if available

string

transcript_url

URL to the video transcript (PDF), if available

integer

transcript_size

Size of the video transcript in bytes, if available

string

thumbnail_url

URL to the thumbnail image that can be shown as a preview

array

subtitles

All subtitles for video

[
  {
    "language": "string",
    "created_by_machine": "boolean",
    "vtt_url": "string"
  }
]

Relationships

includable

subtitle-tracks

Routes

GET /api/v2/videos/:id

Retrieve information about a video