This is a lower-level API. Lower-level APIs are not recommended for most projects, and may not be available on all plans. See our page on recommended deployment patterns for more information.
Event Assess API

test:save:success

Fires when saving the assessment is successful. This can occur at any time during the assessment.

You would want to be notified about this event firing, because you may want to inform the learner that their responses have been saved, for example.

Examples

itemsApp.on('test:save:success', function () {
    console.log('This code executes when saving the assessment is successful.');
});

Related articles

Was this article helpful?