Secure Payments API Get Checking Account
General
Getting a checking account is one of the checking account options available through the Secure Payments (formerly PCI Wallet) API.
How To
To get an existing checking account details you must have the checking account token that you received when you first created the checking account. To get the checking account information, send a GET request to the endpoint: checking-account/{token}
- {token} will be replaced with the specific checking account token
Request:
curl -X GET --header 'Accept: application/json' --header 'secret: your-secret' --header 'authorization: your-token' 'https://pciwallet.simnang.com/api/checking-account/CiCVDqG5QNK%2BZhpBI3fNrwHkwiWdtqO5Nb1OQctzK3SzhRKnAQEBAwB4lQ6huUDSvmYaQSN3za8B5MIlnbajuTW9TkHLcyt0s4UAAAB%2BMHwGCSqGSIb3DQEHBqBvMG0CAQAwaAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAzKzgN390I4Q5o0sbsCARCAO%2BViFJPk4xZ%2BF1MOtfj9J%2FwiL91j70BSCTjKvzHEiZbZm3vXolm4vACYXJEZ8tHY4kBc1kFGjaCDxND3.eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXUyJ9.eyJhZGRyZXNzIjoiQ2hlY2tpbmcgMTIzIiwidXBkYXRlZCI6MTQ0OTg3MjU1NiwiY2l0eSI6IlNhbHQgTGFrZSBDaXR5IiwiY3JlYXRlZCI6MTQ0OTg3MjU1Niwic3RhdGUiOiJVVCIsInppcGNvZGUiOiI4MzI2MCIsImlkIjo5LCJhZGRyZXNzX2lkIjoyMiwidXNlcl9pZCI6NSwiY291bnRyeSI6IlVTQSJ9.z61pXocrhudgGW8Y0Rm_Z5HQEEtt-G0_hiZSOr9aEgU'
Response:
{
"address": "123. Oak Road.",
"city": "Nogales",
"bank_name": "Banky McBank",
"state": "AZ",
"zipcode": "85621",
"eft_branch_number": "",
"account_type": "checking",
"accountholder_name": "",
"routing_number": "021000021",
"account_number": "000111222",
"eft_institution_number": "",
"country": "USA"
}