Update Enrichment Items Order

Updates the execution order of a tag's enrichment items. By default this list is empty and the execution order runs based on the creation time, any update to the tag items order will be added automatically to the 'enrichment_order' list (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.

Sample Calls

curl --request PUT \
     --url https://api.bigpanda.io/resources/v2.0/enrichments-config/tags/devicetype/order \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-Type: application/json' \
     --data '{
	"enrichment_order": [
		"05092465-94e5-4766-80a4-e619ef370666",
		"ee345677-5cfa-4b65-ba8b-a7615b998777"
	]
}'
curl --request PUT \
     --url https://eu-api.bigpanda.io/resources/v2.0/enrichments-config/tags/devicetype/order \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-Type: application/json' \
     --data '{
	"enrichment_order": [
		"05092465-94e5-4766-80a4-e619ef370666",
		"ee345677-5cfa-4b65-ba8b-a7615b998777"
	]
}'
Language