post https://sandbox.external.routefusion.com/graphql (29 disregard)
The findBank query fetches and returns a single bank that matches the given routing information. Note: One of (iban, swift_bic) required.
Parameters
| Parameter | Type | Required | Definition |
|---|---|---|---|
| iban | String | false | This is optional. The endpoint requires one or the other |
| swift_bic | SwiftBic | false | This is optional. The endpoint requires one or the other |
| clabe | CLABE | false | This is optional. The endpoint requires one or the other |
| routing_code | BankRoutingCode | false | Requires country |
| country | ISO3166_1 | false | Use with routing_code |
| address | String | false | This is optional. The endpoint requires one or the other |
You can useiban or swift_bic or club etc to identify, you don't need all of these:grinning:
GraphQL Mutation: createBankDetails
mutation createBankDetails(
$iban: String,
$swift_bic: SwiftBic,
$clabe: CLABE,
$routing_code: BankRoutingCode,
$country: ISO3166_1,
$address: String
) {
createBankDetails(
iban: $iban,
swift_bic: $swift_bic,
clabe: $clabe,
routing_code: $routing_code,
country: $country,
address: $address
) {
id
iban
swift_bic
clabe
routing_code
country
address
}
}