Delete Tag Vulnerability Metadata
DELETE/api/v32.07/tags/:id/vuln
x-prisma-cloud-target-env: {"permission":"collections"}
Removes a tag from a vulnerability. When you delete a tag, the tag is deleted from a wider scope. All the packages and resources that were in scope will be untagged.
cURL Request
Refer to the following example cURL command that removes the tag named ignored
from the CVE CVE-2017-15088
:
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X DELETE \
-d \
'{
"id": "CVE-2017-15088",
"packageName": "krb5"
}' \
"https://<CONSOLE>/api/v<VERSION>/tags/ignored/vuln"
Request
Path Parameters
id stringrequired
Responses
- 200
- default
OK
Loading...