findBank

The findBank query fetches and returns a single bank that matches the given routing information. Note: One of (iban, swift_bic) required.

Parameters

ParameterTypeRequiredDefinition
ibanStringfalseThis is optional. The endpoint requires one or the other
swift_bicSwiftBicfalseThis is optional. The endpoint requires one or the other
clabeCLABEfalseThis is optional. The endpoint requires one or the other
routing_codeBankRoutingCodefalseRequires country
countryISO3166_1falseUse with routing_code
addressStringfalseThis is optional. The endpoint requires one or the other

You can use iban or swift_bic or club etc to identify, you don't need all of these 😀

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
  }
}
Language
Click Try It! to start a request and see the response here!