Get enriched project indicator application
const url = 'https://localhost:10001/api/v2/projects/example/indicator-applications/example';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://localhost:10001/api/v2/projects/example/indicator-applications/example \ --header 'Authorization: <Authorization>'Retrieves one project indicator application by numeric ID or application UUID with full context
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Project ID, UUID (urn:uuid optional), or slug:my-project
Application ID or UUID (urn:uuid optional)
Query Parameters
Section titled “Query Parameters ”Include archived applications
Responses
Section titled “ Responses ”Enriched indicator application
An indicator application expanded with its template and the control it is applied to
object
Urn:uuid form
A project-scoped indicator template, with a count of the controls it is applied to
object
object
object
When to emit a declaration
object
Urn:uuid form
object
Urn:uuid form
One indicator evaluation, including its criteria outcomes and any declaration it produced
object
One criterion’s outcome within an evaluation; the evaluation passes only when every criterion does
object
Evaluation wall time in milliseconds
object
The machine-readable reason a criterion failed, including the values compared
object
Urn:uuid form
Urn:uuid form
Example
{ "indicator": { "declarationProfile": { "emitOn": "pass" }, "triggerType": "event", "type": "custom" }, "latestEvaluation": { "criterionResults": [ { "status": "pass" } ], "failureDetails": [ { "arrayMatchMode": "all", "criteriaType": "string", "operator": "eq" } ], "result": "pass" }, "status": "active"}Bad request - Invalid application identifier
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Unauthorized - Authentication required
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Forbidden - No project access or insufficient permissions
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Indicator application not found
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Internal server error
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}