addUsers - Methods - Reports API

Reports API Methods

addUsers()

Add additional users to the live progress report. The report will then listen to live events as the learner(s) interact with the assessment.

You would want to use this to add a learner that had arrived late to a live assessment, for example.

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

reportsApp.getReport("my-live-progress-report-id").addUsers([
    {
        "id": "MY-ANONYMIZED-USER-ID",
        "name": "Student 1234",
        "hash": "[insert your 'user_id + consumer_secret' SHA256 hash]"
    },

    // ...
]);

Arguments

  • userArray array[UserObject]

    An array of user objects to be added to the report.

    • UserObject object

      An object containing the user information required to add that user to a live progress report.

      • id string

        The user ID that should be tracked in this report. This is the same user_id used when initializing the Items API in the assessment.

      • name string

        The name to be displayed in the live progress report UI.

      • hash string

        A SHA256 hash of the user_id and your consumer secret.

Return value

None (undefined).

Related articles

Was this article helpful?

Did you arrive here by accident? If so, learn more about Learnosity.