Secure Payments API Intro
General
Secure Payments (formerly PCI Wallet) is a payment processing API, aggregating multiple payment processors. It presents a single unified RESTful API to the most common payment processing operations, supporting both credit card transactions as well as check processing.
In addition to the information found here, there are also some API examples we've created in StackBlitz. These examples include the code that is necessary to send the requests they show. For example, here is an example of how to get an OBO Token from Secure Payments through the API.
The following payment processors are supported:
- Authorize.net (Credit Card)
- Tabapay (Credit Card)
- LoanPaymentPro (Credit Card/eCheck)
- SpeedChex (eCheck)
- VersaPay (Canada EFT)
- EFT Canada (Canada EFT)
- ACH (NACHA offline batch processing)
The API base URL is https://pciwallet.simnang.com/api/
For brevity, we omit the full URL in each endpoint. Please keep in mind this when building your request URL in your application:
Documented endpoint:
credit-card/{token}
Final endpoint (replacing {token} with an actual value):
https://pciwallet.simnang.com/api/credit-card/my-sample-token
Example requests are in curl
but can be adapted to work in the programming language of your choosing. The only requirement is being able to make HTTPS
requests.