Update Alert Tag Order

Updates tag run order

🚧

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.1/enrichments-config \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
     "alert_tags_order": [
          "host",
          "application",
          "check"
     ]
}
'
curl --request PUT \
     --url https://eu-api.bigpanda.io/resources/v2.1/enrichments-config \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
     "alert_tags_order": [
          "host",
          "application",
          "check"
     ]
}
'
Language