Strise Connect API Docs
Mutations

sandboxAlertGenerate

Generate a PEP or sanction alert for a monitored entity in sandbox. This mutation creates a new screening hit, builds the aggregate, and triggers an alert. Only available in sandbox environment.

mutation SandboxAlertGenerate($where: SandboxAlertInput!) {
  sandboxAlertGenerate(where: $where) {
    success
  }
}
input SandboxAlertInput {
  monitoredEntity: ID!
  alertType: SandboxAlertType!
  relatedEntity: ID
  action: SandboxAlertAction = ADD
}

Arguments

where SandboxAlertInput! non-null input

SandboxAlertInput!

Type

SandboxAlertPayload object

SandboxAlertPayload Payload returned after generating a sandbox alert

Response Fields

success Boolean! non-null scalar

Boolean! Whether the alert was successfully generated

On this page