Field tiers
Every field in a Genesys Cloud event or API response belongs to exactly one of six tiers.
The four customer-configurable tiers (Allow, Deny, Encrypt, Transform) are mutually exclusive: any one field appears in at most one tier.
Processing order
The Fetcher Service processes every event in four passes, in order.- Mandatory override. Check each field path against the mandatory list. If a mandatory field sits under a denied parent, retain the parent and prune all non-mandatory siblings. Mandatory always wins.
- Deny. Evaluate every remaining field path against the deny list. Mark matched fields for removal.
- Allow, Encrypt, Transform. Apply the customer-declared tiers to the remaining fields.
- Default nullify. Every field outside the previous three passes
keeps its key; its value becomes
null.
Path notation
All lists use dot notation against the JSON payload.- A top-level key such as
conversationmatches the entire object at that key. - A nested path such as
conversation.participants.namematches only that specific subfield.
Parent-key behavior
When a deny entry targets a parent and no mandatory entry references any child of that parent, the Fetcher Service removes the entire parent key. The key is absent from the output — not an empty object. When a deny entry targets a parent and the mandatory, allow, encrypt, or transform list references one or more children of that parent, the Fetcher Service retains the parent containing only those referenced children. Every other child is removed regardless of whether it also appears in the deny list.Data flow
Policy caching
The Fetcher Service fetches the active redaction config from the Operata Config API and caches it for 30 minutes. If the API is unreachable or returns an invalid policy, the service falls back to the last valid policy in Operata’s secure storage.
If no valid policy exists in either location, the Fetcher Service marks the batch as failed until a valid config is available.
Mandatory keep-list
The Fetcher Service always preserves these fields. The list is hard-coded; the redaction API rejects any rule that targets a mandatory field with400 Bad Request.
EventBridge — conversation end event
GET /users/{id}
GET /conversations/{id}/details
Common configurations
Related
- Configure Genesys Cloud redaction — step-by-step rollout against the Operata Config API.
- Concept: Privacy and redaction — the cross-integration model.
- Genesys Cloud integration overview — the EventBridge topics and REST endpoints the schema applies to.
- Install the Genesys Cloud integration — required before redaction config has any effect.