Updates the list of vulnerabilities/QIDs associated with a list.
Parameter | Mandatory/Optional | Data Type | Description |
---|---|---|---|
listId | Mandatory | string | Specify the ID/UUID of the list. |
qidsAdditionFilter | Mandatory | string | Specify a filter to add QIDs to the list. |
qidsRemovalFilter | Mandatory | string | Specify a filter to remove QIDs from the list. |
qidsToBeAdded | Mandatory | string | Specify the QIDs to be added to the list. |
qidsToBeRemoved | Mandatory | string | Specify the QIDs to be removed from the list. |
If QIDs are specified in "qidsToBeAdded" and "qidsToBeRemoved", the "qidsAdditionFilter" and "qidsRemovalFilter" parameters are ignored.
API Request
curl -X "PUT"
"<qualys_base_url</csapi/v1.3/list/64b2b343-6d3c-43ba-8912-
97e45de0b460/vulns"
-H "accept: application/json"
-H "Authorization: Bearer <token>"
-H "Content-Type: application/json"
-d "{
"qidsAdditionFilter": null,
"qidsRemovalFilter": null,
"qidsToBeAdded": [
null
],
"qidsToBeRemoved": [
44069,
92028
]
}"
Response
Response code 200
Was this topic helpful?