Delete Alert Tag

Deletes an alert tag.

🚧

Authentication

All BigPanda APIs require Bearer Token Authorization in the call headers.

This API uses the User API Key type of Authorization token.

Enrichment items are tied to their tag. If all enrichment items are deleted from a tag, the tag will also be removed from the system. Deleting a tag will remove all of the tag’s enrichment items as well.

❗️

Deleting Mapping Enrichment Items

To delete a tag with mapping enrichment items, you must first delete the associated mapping enrichment schema.

Mapping enrichment schemas apply to multiple tags, and deleting a schema will remove the mapping enrichment from all associated tags. If any associated tags should remain in BigPanda, we recommend first creating the new schema, then deleting the old one.

Sample Calls

curl --request DELETE \
     --url https://api.bigpanda.io/resources/v2.1/enrichments-config/tags/{TAG_NAME}
     --header 'Authorization: Bearer <User API Key>' \
     --header 'accept: application/json'
curl --request DELETE \
     --url https://eu-api.bigpanda.io/resources/v2.1/enrichments-config/tags/{TAG_NAME}
     --header 'Authorization: Bearer <User API Key>' \
     --header 'accept: application/json'
Language