List project indicator applications
const url = 'https://localhost:10001/api/v2/projects/example/indicators/example/applications';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/example/applications \ --header 'Authorization: <Authorization>'Lists non-archived applications for a project indicator 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
Indicator UUID (urn:uuid optional) or slug:my-indicator
Query Parameters
Section titled “Query Parameters ”Page size
Page offset
Responses
Section titled “ Responses ”Page of indicator applications
The indicator applications matching the request, unpaginated
object
An indicator application reduced to its identity and status
object
Urn:uuid form
Urn:uuid form
Example
{ "applications": [ { "status": "active" } ]}Bad request - Invalid indicator ID format
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"}