Reports API Methods
extendTime()
Adds time (in seconds) for the specified learners' assessments when using the live progress report.
You would want to use this to extend the assessment time for given learners in a live proctoring scenario.
This report is primarily for monitoring learner progress during proctored assessments. It is updated based on live interactions of learners with their assessments in real time.
Examples
// Add 10 minutes to assessment time for the specified users
reportsApp.getReport('my-live-progress-report-id').extendTime(['user_1', 'user_2'], 600);
Arguments
-
userArray array[string]
An array of user IDs with active assessments that will be awarded extra time. This is the same
user_id
used when initializing the Items API in the assessment. -
seconds number
The number of seconds that will be added to the assessment.
Return value
None (undefined
).
Related articles
- Provide Live Progress Tracking & Control Demo
- The
user_id
Items API initialization option, which allows you to specify the user ID. - Live progress - Understand student needs in real time