List project-scoped indicators
const url = 'https://localhost:10001/api/v2/projects/example/indicators';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/indicators \ --header 'Authorization: <Authorization>'Lists active indicator templates owned by a project, filtered by search and tag, with pagination
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Project ID, UUID (urn:uuid optional), or slug:my-project
Query Parameters
Section titled “Query Parameters ”Search by name or description
Filter by tag
Page size
Page offset
Responses
Section titled “ Responses ”Page of project indicator templates
A page of project indicator templates, with the total available for pagination
object
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
Example
{ "indicators": [ { "declarationProfile": { "emitOn": "pass" }, "triggerType": "event", "type": "custom" } ]}Bad request - Invalid limit or offset parameter
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"}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"}