Update Tag Order

Changes the order tags appear in the 'alert_tags_order' array (Enrichment V2)

🚧

Authentication

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

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

📘

By default this list is empty and the execution order runs based on the creation time. New tags will only appear in the alert_tags_order array after an update to the tag order

Sample Calls

curl --request PUT \
     --url https://api.bigpanda.io/resources/v2.0/enrichments-config \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-Type: application/json' \
     --data '{
    "alert_tags_order":["wiki", "tagwith2rules"]
}'
curl --request PUT \
     --url https://eu-api.bigpanda.io/resources/v2.0/enrichments-config \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-Type: application/json' \
     --data '{
    "alert_tags_order":["wiki", "tagwith2rules"]
}'
Language