Create Mapping Enrichment Table Rows

Adds specific rows to an existing mapping enrichment table (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.

🚧

Tag Limitations

To maintain quality of service, BigPanda limits the number of alert tags and enrichment items available. Each organization can have:

  • 1000 alert tags
  • 500 enrichment items per alert tag
  • 20,000 alert enrichment items total
  • 200 mapping enrichment results tags

If more alert tags or enrichment items are needed, we recommend exploring normalization options to help streamline your alert data and improve incident quality.

Sample Calls

curl --request POST \
     --url https://api.bigpanda.io/resources/v2.0/alert-enrichments/039b5ed9-fe54-4555-b326-438a64861ae9_1615893741/map \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-Type: text/csv; charset=utf8' \
     --data 'application,owner,Runbook URL
billing23,Bobo Roko,https://acme-wiki.com/billing+SOP
sale24s,Rick Sanches,https://acme-wiki.com/salesapp+SOP
'
curl --request POST \
     --url https://eu-api.bigpanda.io/resources/v2.0/alert-enrichments/039b5ed9-fe54-4555-b326-438a64861ae9_1615893741/map \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-Type: text/csv; charset=utf8' \
     --data 'application,owner,Runbook URL
billing23,Bobo Roko,https://acme-wiki.com/billing+SOP
sale24s,Rick Sanches,https://acme-wiki.com/salesapp+SOP
'
Language