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

getTimeWindow()

Returns the start time value and the time status of the test, provided that time.start_time is configured.

Examples

// Standard usage
var timeWindow = itemsApp.assessApp().getTimeWindow();
// Returns
{
    value: "20230811-0016",
    status: "started"
}

Arguments

None.

Return value

object

Contains the assessment's start time information, including the value representing the start time value and the status which can be either started or unavailable. See above example.

Was this article helpful?