Skip to content

List project indicator applications

GET
/api/v2/projects/{projectId}/indicators/{indicatorId}/applications
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

projectId
required
string

Project ID, UUID (urn:uuid optional), or slug:my-project

indicatorId
required
string

Indicator UUID (urn:uuid optional) or slug:my-indicator

limit
integer

Page size

offset
integer

Page offset

Page of indicator applications

Media type application/json

The indicator applications matching the request, unpaginated

object
applications
Array<object>

An indicator application reduced to its identity and status

object
applicationUuid

Urn:uuid form

string
appliedPolicyControlId
integer
createdAt
string format: date-time
id
integer
indicatorId

Urn:uuid form

string
lastEvaluatedAt
string format: date-time
status
string
Allowed values: active disabled archived
updatedAt
string format: date-time
limit
integer
offset
integer
total
integer
Example
{
"applications": [
{
"status": "active"
}
]
}

Bad request - Invalid indicator ID format

Media type application/json

Error body returned by the governance endpoints; the message is human-readable and not a stable identifier

object
error
string
Example
{
"error": "Invalid request body"
}

Unauthorized - Authentication required

Media type application/json

Error body returned by the governance endpoints; the message is human-readable and not a stable identifier

object
error
string
Example
{
"error": "Invalid request body"
}

Forbidden - No project access or insufficient permissions

Media type application/json

Error body returned by the governance endpoints; the message is human-readable and not a stable identifier

object
error
string
Example
{
"error": "Invalid request body"
}

Internal server error

Media type application/json

Error body returned by the governance endpoints; the message is human-readable and not a stable identifier

object
error
string
Example
{
"error": "Invalid request body"
}