As of December 31st, 2023 ThreadFix 2.X has reached End of Life and is no longer supported. For any further information please contact the Success and Implementation team.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

/rest/{version}/history/vulnerabilities/{vulnId}/history/objects?

Descriptor

Value

HTTP Method

POST

Description

Returns a list of history events for a given vulnerability.

Required Permission

Read Access

Version Introduced2.8.3


Request Header Parameters

Parameter

Value

Required

Description

Accept

String

Yes

A value of ‘application/json’ must be provided.

Request Get Parameters

Parameter

Value Type

Required

Description

page

Integer

No

Which page of vulnerability history events to return.

numberToShowIntegerNoHow many vulnerability history events to return.

Sample Calls: 


curl -H 'Accept: application/json' -H 'Authorization: APIKEY {apiKey}' http://localhost:8083/threadfix/rest/v283/history/vulnerabilities/16484/history/objects?numberToShow=25&page=1


Sample Output:


{
    "message": "",
    "success": true,
    "responseCode": -1,
    "object": {
        "retrievedHistory": true,
        "eventHistory": [
            {
                "id": 110,
                "date": 1597997707000,
                "eventAction": "VULNERABILITY_OPEN_SCAN_UPLOAD",
                "detail": null,
                "status": null,
                "groupCount": null,
                "description": "ThreadFix performed an action: Create Vulnerability From Scan Upload",
                "userName": "ThreadFix",
                "vulnerabilityId": 68,
                "applicationId": 1,
                "organizationId": null,
                "defectId": null,
                "vulnerabilityDescriptionWithUrls": {
                    "string": "ThreadFix created Vulnerability uploading a <a href='{URL_0}'>Scan</a> to Application.",
                    "{URL_0}": "/organizations/3/applications/1/scans/11",
                    "urlCount": 1
                },
                "vulnerabilityCommentId": null,
                "eventActionDisplayName": "Create Vulnerability From Scan Upload",
                "scanId": 11
            }
        ]
    }
}
  • No labels