Enrichments Object

Defines the schema for an alert enrichment (Enrichment V2)

API Endpointshttps://api.bigpanda.io/resources/v2.0/enrichments-config/

https://api.bigpanda.io/resources/v2.0/alert-enrichments/

https://api.bigpanda.io/resources/v2.0/alert-enrichments-jobs/
Supported MethodsPOST, GET, PATCH, PUT,DELETE

Parameters

The Enrichment item object schema includes the following attributes:

AttributeDescriptionExample
activeWhether the enrichment item is applied to all incoming alert data."active": true
idSystem-generated unique identifier for the enrichment item."id": "1234a53b6789c12d3efg45h"
versionInternal version number of the current data mapping table for this enrichment item. This number is incremented automatically each time the table/item is updated."version": 1
typeEnrichment function type used to create enrichment items."type": "mapping"
configConfiguration details associated with the enrichment technique.For a mapping enrichment, this attribute contains the map's definitions like table name, query & result tags and note.
whenA BPQL query for filtering the incoming alerts to be enrichedBPQL string, BPQL object or boolean

"when": true
"when": "host != x"

"when":
{
"!=": [
"host",
"x"
]
}
noteA description"note": hello world

`