AddBankAccount
Signature
mutation {
AddBankAccount(accountId: ..., bankAccountType: ..., iban: ..., bic: ..., rib: ...)
}
Retourne : BankAccount!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
accountId | ID! | ✓ | — | — |
bankName | String | — | — | |
holderName | String | — | — | |
bankAccountType | BankAccountType! | ✓ | — | — |
iban | String! | ✓ | — | — |
bic | String! | ✓ | — | — |
rib | UploadDocument! | ✓ | — | — |
Exemple
mutation {
AddBankAccount(
accountId: $accountId
bankAccountType: $bankAccountType
iban: $iban
bic: $bic
rib: $rib
) {
# Sélectionner les champs souhaités
}
}