Update Event Enrichment rules
Event Enrichments allow you to automatically add contextual data to events as they're ingested, so that relevant information is available throughout the event, alert, and incident lifecycle. By leveraging the Contextual Data Platform (CDP), you can define rules that extract values from events or query enrichment schemas to populate event fields.
<!-- theme: warning -->Early Access
This API is in Early Access and may change at any time. Contact your PagerDuty account team to request access.
Update the enrichment rules for a specific Event Enrichment. Performs a full replacement of the rules set.
Path parameters
The ID of the Event Enrichment.
Headers
The Accept header is used as a versioning header.
Request body
Example request
{
"orchestration_path": {
"sets": [
{
"rules": [
{
"conditions": [
{
"expression": "event.summary matches part 'my service error'"
}
]
}
]
}
]
}
}Response
The updated Event Enrichment rules (orchestration path).
Example response
{
"orchestration_path": {
"sets": [
{
"rules": [
{
"conditions": [
{
"expression": "event.summary matches part 'my service error'"
}
]
}
]
}
]
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.