• Home
  • API
  • Environment
  • Application Security
  • Vulnerabilities
  • GET remediation item details

Vulnerabilities API - GET remediation item details

Lists the details of a remediation tracking process group of a third-party vulnerability (or, in the case of Kubernetes vulnerabilities, the parameters of a remediation tracking Kubernetes node).

The request produces an application/json payload.

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

Authentication

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

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

Parameters

ParameterTypeDescriptionInRequired
idstring

The ID of the required third-party security problem.

pathrequired
remediationItemIdstring

The ID of the remediation item.

pathrequired

Response

Response codes

CodeTypeDescription
200RemediationDetailsItem

Success. The response contains details of a single remediation item of a security problem.

Response body objects

The RemediationDetailsItem object

Detailed information of a remediation item for a security problem.

ElementTypeDescription
assessmentRemediationAssessment

Assessment of the remediation item.

entityIdsstring[]-
firstAffectedTimestampinteger-
idstring-
muteStateRemediationItemMuteState

The mute state of a remediation item of a security problem.

namestring-
remediationProgressRemediationProgress

The progress of this remediation item. It contains affected and unaffected entities.

resolvedTimestampinteger-
vulnerabilityStatestring-
The element can hold these values
  • RESOLVED
  • VULNERABLE
vulnerableComponentsRemediationItemDetailsVulnerableComponent[]

A list of vulnerable components of the remediation item.

A vulnerable component is what causes the security problem.

The RemediationAssessment object

Assessment of the remediation item.

ElementTypeDescription
dataAssetsstring

The reachability of related data assets by affected entities.

The element can hold these values
  • NOT_AVAILABLE
  • NOT_DETECTED
  • REACHABLE
exposurestring

The level of exposure of affected entities.

The element can hold these values
  • NOT_AVAILABLE
  • NOT_DETECTED
  • PUBLIC_NETWORK
numberOfDataAssetsinteger

The number of related data assets.

vulnerableFunctionUsagestring

The usage of vulnerable functions

The element can hold these values
  • IN_USE
  • NOT_AVAILABLE
  • NOT_IN_USE
vulnerableFunctionsInUseVulnerableFunction[]

A list of vulnerable functions that are in use.

vulnerableFunctionsNotAvailableVulnerableFunction[]

A list of vulnerable functions that are not available.

vulnerableFunctionsNotInUseVulnerableFunction[]

A list of vulnerable functions that are not in use.

The VulnerableFunction object

Defines an vulnerable function.

ElementTypeDescription
classNamestring

The class name of the vulnerable function.

filePathstring

The file path of the vulnerable function.

functionNamestring

The function name of the vulnerable function.

The RemediationItemMuteState object

The mute state of a remediation item of a security problem.

ElementTypeDescription
commentstring

A short comment about the most recent mute state change.

lastUpdatedTimestampinteger

The timestamp (UTC milliseconds) of the last update of the mute state.

mutedboolean

The remediation is (true) or is not (false) muted.

reasonstring

The reason for the most recent mute state change.

The element can hold these values
  • AFFECTED
  • CONFIGURATION_NOT_AFFECTED
  • FALSE_POSITIVE
  • IGNORE
  • INITIAL_STATE
  • OTHER
  • VULNERABLE_CODE_NOT_IN_USE
userstring

The user who last changed the mute state.

The RemediationProgress object

The progress of this remediation item. It contains affected and unaffected entities.

ElementTypeDescription
affectedEntitiesstring[]

A list of related entities that are affected by the security problem.

unaffectedEntitiesstring[]

A list of related entities that are affected by the security problem.

The RemediationItemDetailsVulnerableComponent object

A vulnerable component with details for a remediation item (PG).

ElementTypeDescription
affectedEntitiesstring[]

A list of affected entities.

displayNamestring

The display name of the vulnerable component.

fileNamestring

The file name of the vulnerable component.

idstring

The Dynatrace entity ID of the vulnerable component.

loadOriginsstring[]

The load origins of the vulnerable components.

numberOfAffectedEntitiesinteger

The number of affected entities.

shortNamestring

The short, component-only name of the vulnerable component.

Response body JSON model

json
{ "assessment": { "dataAssets": "NOT_AVAILABLE", "exposure": "NOT_AVAILABLE", "numberOfDataAssets": 1, "vulnerableFunctionUsage": "IN_USE", "vulnerableFunctionsInUse": [ { "className": "string", "filePath": "string", "functionName": "string" } ], "vulnerableFunctionsNotAvailable": [ {} ], "vulnerableFunctionsNotInUse": [ {} ] }, "entityIds": [ "string" ], "firstAffectedTimestamp": 1, "id": "string", "muteState": { "comment": "string", "lastUpdatedTimestamp": 1, "muted": true, "reason": "AFFECTED", "user": "string" }, "name": "string", "remediationProgress": { "affectedEntities": [ "string" ], "unaffectedEntities": [ "string" ] }, "resolvedTimestamp": 1, "vulnerabilityState": "RESOLVED", "vulnerableComponents": [ { "affectedEntities": [ "string" ], "displayName": "string", "fileName": "string", "id": "string", "loadOrigins": [ "string" ], "numberOfAffectedEntities": 1, "shortName": "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.

  • Remediation tracking

    Track the remediation progress of vulnerabilities.