Skip to main content

Delete a Tag

DELETE 

/api/v32.04/tags/:id

x-prisma-cloud-target-env: {"permission":"collections","saas":true,"self-hosted":true}
x-public: true

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

OK

Loading...