List project-scoped indicators
GET /api/v2/projects/{projectId}/indicators Select code sample Fetch cURL
const url = 'https://localhost:10001/api/v2/projects/1/indicators';const options = {method: 'GET', headers: {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/1/indicators \ --header '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 ” projectId required integerProject ID
Query Parameters
Section titled “Query Parameters ” search stringSearch by name or description
tag stringFilter by tag
limit integerPage size
offset integerPage offset
Responses
Section titled “ Responses ”200
Section titled “200 ”Page of project indicator templates
Media type application/json object indicators Array