Remove project indicator application
DELETE
/api/v2/projects/{projectId}/indicator-applications/{applicationId}
const
url
=
'
https://localhost:10001/api/v2/projects/1/indicator-applications/1
'
;
const
options
= {method:
'
DELETE
'
, headers: {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/1/indicator-applications/1
\
--header
'
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 ”
projectId
required
integer
Project ID
applicationId
required
integer
Application ID
Responses
Section titled “ Responses ”Indicator application removed
Bad request - Invalid application ID or application outside project
object
key
additional properties
string
Unauthorized - Authentication required
object
key
additional properties
string
Forbidden - No project access or insufficient permissions
object
key
additional properties
string
Indicator application not found
object
key
additional properties
string
Internal server error
object
key
additional properties
string