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
) {
resolvedPropertyValues(technicalCodes: $technicalCodes) {}
id
account {}
iban
bic
holderName
bankName
status {}
documentControl {}
bankAccountType {}
countryLocation {}
countryRisk {}
countryRiskDetailed {}
customProperties {}
externalProvider {}
externalId
activeExternalProvider
}
}