curl --request GET \
--url https://api.cadanapay.com/v1/providers/resolve \
--header 'Authorization: Bearer <token>'{
"bankName": "Itaú Unibanco",
"countryCode": "BR",
"city": "",
"routingNumber": "",
"swiftCode": "ITAUBRSP"
}Resolves a bank code, SWIFT code, or ACH routing number to the corresponding bank name and details. The behaviour depends on the paymentMethod parameter:
curl --request GET \
--url https://api.cadanapay.com/v1/providers/resolve \
--header 'Authorization: Bearer <token>'{
"bankName": "Itaú Unibanco",
"countryCode": "BR",
"city": "",
"routingNumber": "",
"swiftCode": "ITAUBRSP"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The bank code, SWIFT code, or routing number to look up
ISO 4217 currency code
Payment method type: swift, ach, or bank
swift, ach, bank Resolved bank provider details
The name of the resolved bank or financial institution
"Itaú Unibanco"
The country code in ISO 3166-1 alpha-2 format
"BR"
City of the bank branch (populated for SWIFT and ACH lookups)
""
ACH routing number (populated for ACH lookups)
""
SWIFT/BIC code (populated when available)
"ITAUBRSP"