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.
Public Method Assess API

item()

Allows access to the methods of an item.

Examples

assessApp.item("ccore_video_590_classification")
    .checkImages()
    .then(function () {
        console.log("All the images are loaded");
    })
    .catch(function () {
        console.log("Image(s) failed loading. You can call
        `retryLoadImages` on the item facade to retry loading them.");
    });
};

Arguments

  • reference string
    The item's reference.

Return value

Value object

An object containing methods for an Item when using "assess" as the rendering_type.

Properties

  • checkImages function
  • flag function
    Sets an item as flagged (marked) or not.
  • retryLoadImages function
Was this article helpful?