Skip to main content

AddBankAccount

Stable

Signature

mutation {
AddBankAccount(accountId: ..., bankAccountType: ..., iban: ..., bic: ..., rib: ...)
}

Retourne : BankAccount!

Arguments

NomTypeRequisDéfautDescription
accountIdID!
bankNameString
holderNameString
bankAccountTypeBankAccountType!
ibanString!
bicString!
ribUploadDocument!

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
}
}