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