UpdateAmlAlert
Signature
mutation {
UpdateAmlAlert(alertId: ..., comment: ...)
}
Retourne : AmlAlert!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
alertId | ID! | ✓ | — | — |
comment | String! | ✓ | — | — |
withMail | Boolean | — | — | |
action | ComplianceControlAction | — | "reset" or "escalate" or null for just comment |
Exemple
mutation {
UpdateAmlAlert(
alertId: $alertId
comment: $comment
) {
id
account {}
levelDetailed {}
comment
canResolveAlert
typeLabel
riskLevel {}
situation {}
classificationDocument {}
}
}