• Home
  • API
  • Environment
  • Application Security
  • Vulnerabilities
  • POST unmute vulnerabilities

Vulnerabilities API - POST unmute vulnerabilities

Unmutes multiple vulnerabilities. Unmuted vulnerabilities are displayed on the vulnerability list in Dynatrace.

The request consumes an application/json payload.

POSTManagedDynatrace for Governmenthttps://{your-domain}/e/{your-environment-id}/api/v2/securityProblems/unmute
SaaShttps://{your-environment-id}.live.dynatrace.com/api/v2/securityProblems/unmute
Environment ActiveGatehttps://{your-activegate-domain}/e/{your-environment-id}/api/v2/securityProblems/unmute

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
bodySecurityProblemsBulkUnmute

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

bodyoptional

Request body objects

The SecurityProblemsBulkUnmute object

Information on un-muting several security problems.

ElementTypeDescriptionRequired
commentstring

A comment about the un-muting reason.

optional
reasonstring

The reason for un-muting the security problems.

The element can hold these values
  • AFFECTED
required
securityProblemIdsstring[]

The ids of the security problems to be un-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.

json
{ "comment": "string", "reason": "AFFECTED", "securityProblemIds": [ "string" ] }

Response

Response codes

CodeTypeDescription
200SecurityProblemsBulkUnmuteResponse

Success. The security problem(s) have been un-muted.

Response body objects

The SecurityProblemsBulkUnmuteResponse object

Response of un-muting several security problems.

ElementTypeDescription
summarySecurityProblemBulkMutingSummary[]

The summary of which security problems were un-muted and which already were un-muted previously.

The SecurityProblemBulkMutingSummary object

Summary of (un-)muting a security problem.

ElementTypeDescription
muteStateChangeTriggeredboolean

Whether a mute state change for the given security problem was triggered by this request.

reasonstring

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

The element can hold these values
  • ALREADY_MUTED
  • ALREADY_UNMUTED
securityProblemIdstring

The id of the security problem that was (un-)muted.

Response body JSON model

json
{ "summary": [ { "muteStateChangeTriggered": true, "reason": "ALREADY_MUTED", "securityProblemId": "string" } ] }
Related topics
  • Application Security

    Detect, monitor, remediate vulnerabilities at runtime, and block attacks on your applications.

  • Davis Security Advisor API

    View the Davis Security Advisor recommendations via Dynatrace API.