Sessions-Summary-Report - Report-types - Reports API

Sessions Summary Report

Shows a summary of sessions for a single learner. The report indicates how many Items were correct, incorrect, unattempted (skipped), and unmarked.

You would want to use this to review a single learner and their assessment sessions to investigate potential problems with their performance, for example.

Scoring details

The report uses dichotomous Item scoring to calculate the number of correct Items, so partially correct Items will be reported as incorrect.

Hovering on the score bar displays the percentage of correct Items, rounded to the nearest whole percent.

Examples

// Example report configuration
{
    "reports": [
        {
            "id":          "report-demo",
            "type":        "sessions-summary",
            "user_id":     "mce_student",
            "session_ids": [
                "d7ad7585-a0c1-4c01-9762-44a85f55835c",
                "0df4a070-78dc-4b51-a41d-102911f9521a"
            ]
        }
    ]
}

// Example response data
{
    "data": {
        "score": 8,
        "max_score": 16,
        "max_score_of_attempted": 14,
        "max_score_of_unmarked": 0,
        "count_items": 12,
        "count_items_correct": 7,
        "count_items_partial_correct": 1,
        "count_items_not_scored": 0,
        "count_items_attempted": 11
    },
    "meta": {
        "status": true
    },
    "id": "report-demo"
}

Attributes

  • type string

    The type of this report. Must be "sessions-summary".

  • id string

    The HTML element ID where you want this report to appear.

  • user_id string

    The ID of the user (learner) to report on.

  • session_ids array[string]

    An array of session IDs to include in the report.

    Note If you need more than 100 sessions, contact Learnosity Support.

  • render boolean

    Renders the report on your page at the location set with the specified HTML element ID.

    You would set this property to false if you wanted to receive the raw report data only and use your own custom UI to display it.

    Default: true

Was this article helpful?

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