Update Issue Event

Xray REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: Allows an issue vendor to update a custom issue

Security: Requires a valid user with the "Manage Xray Metadata" permission

Note: Existing issues with "id" prefix as Xray and "provider" is JFrog cannot be modified. You also cannot update the "provider" parameter of an existing issue to JFrog.

Usage: PUT /api/v1/events/{id}

Consumes: application/json

Sample Payload:

{
    "type": "Security",
    "provider": "sec-dep",
    "package_type": "maven",
    "severity": "High",
    "components": [
        {
            "id": "aero:aero",
            "vulnerable_versions": [
                "[0.2.3]"
            ]
        }
    ],
    "cves": [
        {
            "cve": "CVE-2017-1000386",
            "cvss_v2": "2.4"
        }
    ],
    "summary": "new summary",
    "description": "updated description",
    "sources": [
        {
            "source_id": "CVE-2017-1000386"
        }
    ]
}

Response:

Should return updated object.