Remove project indicator application
const url = 'https://localhost:10001/api/v2/projects/example/indicator-applications/example';const options = {method: 'DELETE', 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 DELETE \ --url https://localhost:10001/api/v2/projects/example/indicator-applications/example \ --header 'Authorization: <Authorization>'Archives a project indicator application, removing it from its control
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)
Responses
Section titled “ Responses ”Indicator application removed
Bad request - Invalid application ID or application outside project
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
Invalid request bodyUnauthorized - Authentication required
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
Invalid request bodyForbidden - 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
Invalid request bodyIndicator application not found
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
Invalid request bodyInternal server error
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
Invalid request body