Skip to main content

Resolve Vulnerabilty Instances

PUT 

https://{customer-name}.iot.paloaltonetworks.com/pub/v4.0/vulnerability/update

Mark one or more instances of a vulnerability as resolved.
Rate limiting: 60 times per minute

Request

Query Parameters

    customerid stringrequired

    The customer ID to which the API call is directed

Bodyrequired

    ticketIdListstringrequired

    A list of one or more ticket IDs for vulnerability instances being resolved. If you include the ticket IDs for multiple vulnerability instances, separate them by commas; for example: “ticketIdList”: [“vuln-1a4a72c2”, “vuln-1a4a72c3”, “vuln-1a4a72c4”] To retrieve a list of vulnerabilities and vulnerability instances, including their ticket IDs, use Get Vulnerabilities and refer to the zb_ticketid values.

    actionstringrequired

    The action employed to resolve the vulnerability instance. The following value must be either mitigate or ignore.

    reasonstringrequired

    The reason for resolving the vulnerability instance. The following value cannot contain any special characters.

    full_namestringrequired

    The name of the vulnerability; for example, CVE-2018-18568

Responses

Successful Response

Schema

Authorization: X-Key-Id

name: X-Key-Idtype: apiKeydescription: Your API header requires X-Key-Id for authentication.in: header
name: X-Access-Keytype: apiKeydescription: Your API header requires X-Key-Key for authentication.in: header
curl -L -g -X PUT 'https://{customer-name}.iot.paloaltonetworks.com/pub/v4.0/vulnerability/update' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Key-Id: <X-Key-Id>' \
-H 'X-Access-Key: <X-Key-Id>' \
-d '{
"ticketIdList": "string",
"action": "string",
"reason": "string",
"full_name": "string"
}'
Request Collapse all
Base URL
https://{customer-name}.iot.paloaltonetworks.com
Auth
Parameters
— queryrequired
Body required
{
  "ticketIdList": "string",
  "action": "string",
  "reason": "string",
  "full_name": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!