validateBankAccount
Validate a bank account.
Arguments
Returns
ValidateBankAccountPossible Errors
Allowed Viewers
Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query ValidateBankAccount(
$accountNumber: String!,
$sortCode: String!,
$vendor: PaymentsVendorChoices
) {
validateBankAccount(
accountNumber: $accountNumber,
sortCode: $sortCode,
vendor: $vendor
) {
bankName
branch
county
line1
line2
line3
line4
postcode
town
}
}
Variables
{
"accountNumber": "A-D42FC544",
"sortCode": "meeting-watch-establish-lose-figure",
"vendor": "SMARTDEBIT"
}
Response
{
"data": {
"validateBankAccount": {
"bankName": "man-material-out-drop-computer",
"branch": "serve-school-oil-later-change",
"county": "mean-more-career-seven-writer",
"line1": "defense-performance-lose-brother-thought",
"line2": "recognize-different-play-stock-anyone",
"line3": "common-break-none-me-process",
"line4": "film-foreign-similar-start-state",
"postcode": "detail-sea-exactly-personal-technology",
"town": "especially-responsibility-here-business-get"
}
}
}