RefuseKycReview
Signature
mutation {
RefuseKycReview(accountId: ..., withEmail: ..., refusedComment: ...)
}
Retourne : Account!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
accountId | ID! | ✓ | — | — |
withEmail | Boolean! | ✓ | — | — |
refusedComment | String! | ✓ | — | — |
Exemple
mutation {
RefuseKycReview(
accountId: $accountId
withEmail: $withEmail
refusedComment: $refusedComment
) {
# Sélectionner les champs souhaités
}
}