Secure Payments API Lookup/Verify Routing Number
General
You can lookup and verify bank information from a routing number. Authentication can be through either a combination of authorization and secret or a single OBO token.
How To
There are two metods to get a routing number. Both methods will require sending a GET request to the endpoint: routing-number/verify/{number}
Method 1: Uses the authorization and secret.
curl -X GET --header 'Accept: application/json' --header 'authorization: YOUR AUTH' --header 'secret: YOUR SECRET'
'https://pciwallet.simnang.com/api/routing-number/verify/124302150'
Method 2: Uses the payment method token as the identifier.
curl -X GET --header 'Accept: application/json' 'https://pciwallet.simnang.com/api/routing-number/verify/124302150?token=YOUR-TOKEN'
Response:
{
"code": 200,
"message": "OK",
"name": "US BANK NA",
"rn": "124302150"
}