Delete a Tag
DELETE/api/v32.07/tags/:id
x-prisma-cloud-target-env: {"permission":"collections"}
Deletes a tag from the system.
cURL Request
Refer to the following example cURL command that deletes a tag named my tag:
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X DELETE \
"https://<CONSOLE>/api/v<VERSION>/tags/my%20tag"
A space must be encoded with the value %20
as specified here in unsafe characters in a URL.
Request
Path Parameters
id stringrequired
Responses
- 200
- default
OK
Loading...