Vulnarabilities API - POST mute remediation items

Mutes multiple remediation tracking process groups or, in the case of Kubernetes vulnerabilities, multiple remediation tracking Kubernetes nodes.

The request consumes an application/json payload.

POSTSaaShttps://{your-environment-id}.live.dynatrace.com/api/v2/securityProblems/{id}/remediationItems/mute
Environment ActiveGateCluster ActiveGatehttps://{your-activegate-domain}:9999/e/{your-environment-id}/api/v2/securityProblems/{id}/remediationItems/mute

Authentication

To execute this request, you need an access token with securityProblems.write scope.

To learn how to obtain and use it, see Tokens and authentication.

Parameters

ParameterTypeDescriptionInRequired
idstring

The ID of the requested third-party security problem.

pathrequired
bodyRemediationItemsBulkMute

The JSON body of the request. Contains the muting information.

bodyoptional

Request body objects

The RemediationItemsBulkMute object

Information on muting several remediation items.

ElementTypeDescriptionRequired
commentstring

A comment about the muting reason.

optional
reasonstring

The reason for muting the remediation items.

  • CONFIGURATION_NOT_AFFECTED
  • FALSE_POSITIVE
  • IGNORE
  • OTHER
  • VULNERABLE_CODE_NOT_IN_USE
required
remediationItemIdsstring[]

The ids of the remediation items to be muted.

required

Request body JSON model

This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.

{
"comment": "string",
"reason": "CONFIGURATION_NOT_AFFECTED",
"remediationItemIds": [
"string"
]
}

Response

Response codes

CodeTypeDescription
200RemediationItemsBulkMuteResponse

Success. The remediation item(s) have been muted.

4XXErrorEnvelope

Client side error.

5XXErrorEnvelope

Server side error.

Response body objects

The RemediationItemsBulkMuteResponse object

Response of muting several remediation items.

ElementTypeDescription
summaryRemediationItemMutingSummary[]

The summary of which remediation items were muted and which already were muted previously.

The RemediationItemMutingSummary object

Summary of (un-)muting a remediation item.

ElementTypeDescription
muteStateChangeTriggeredboolean

Whether a mute state change for the given remediation item was triggered by this request.

reasonstring

Contains a reason, in case the requested operation was not executed.

  • ALREADY_MUTED
  • ALREADY_UNMUTED
  • REMEDIATION_ITEM_NOT_AFFECTED_BY_GIVEN_SECURITY_PROBLEM
remediationItemIdstring

The id of the remediation item that will be (un-)muted.

Response body JSON model

{
"summary": [
{
"muteStateChangeTriggered": true,
"reason": "ALREADY_MUTED",
"remediationItemId": "string"
}
]
}