Update Enrichment Item Order for an Alert Tag

Updates enrichment item order for a composition or extraction tag

Enrichment item order is based on the order it appears in the UI or API call.

New rules will be added to the top of the existing enrichment order.

🚧

Authentication

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

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

Sample Calls

curl --request PUT \
     --url https://api.bigpanda.io/resources/v2.1/enrichments-config/tags/{tag_name}/order \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
     "enrichment_order": [
          "b6a7e384-ad82-4db4-b83b-9c87fabafdc9",
          "b6a7e384-ad82-4db4-b83b-9c87fa8a1118"
     ]
}'
curl --request PUT \
     --url https://eu-api.bigpanda.io/resources/v2.1/enrichments-config/tags/{tag_name}/order \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
     "enrichment_order": [
          "b6a7e384-ad82-4db4-b83b-9c87fabafdc9",
          "b6a7e384-ad82-4db4-b83b-9c87fa8a1118"
     ]
}'
Language