Integrate Omnipay and Jetpay
Trexle connects Omnipay to Jetpay and 100+ other payment gateways using a single plugin for one time annual fee
Jetpay and Omnipay Integration Guide
After login to your account dashboard, you need to generate the API key and save
- Merchant Terminal ID (jp_tid)
- API Key
- Security Token
Apart of the API Key together with a part of the Security Token set is converted to a Key (jp_key) which needs to be part of every transaction.
Take the credentials you just obtained from Jetpay and navigate to Trexle dashboard, click Payments Gateways and select Jetpay from the drop down menu as shown below.
Fill into your Jetpay credential and click Add Gateway. Click the Activate button next to Jetpay, and it will give you a success message and the button will turn into green. You should see something like below.
Download Trexle Omnipay driver from Trexle github repository and install Omnipay using composer by adding the following lines into your composer.json file.
{
"require": {
"omnipay/trexle": "~2.0"
}
}
Run composer to update your application dependencies.
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update
Now, test a sandbox transaction using the text cards below.
Test Credit Card Numbers
The following is a listing of Test Credit & Debit Card numbers for testing your application. All numbers pass LUHN checking. Please refer to the XML Schema for information on CVV, AVS and ZIP Matching for specific values.
-
American Express - 3111111111111117
American Express - 378282246310005
American Express - 371449635398431
American Express Corporate - 378734493671000
Diners Club - 30569309025904
Diners Club - 38520000023237
Discover - 6111111111111116
Discover - 6011111111111117
Discover - 6011000990139424
MasterCard - 5111111111111118
MasterCard - 5555555555554444
MasterCard - 5105105105105100
Visa - 4111111111111111
Visa - 4012888888881881
All expiration dates set in the future will return - APPROVED
All expiration dates set in the past will return - DECLINED
Test ACH Numbers
JetPay processed Automated Clearing House (ACH) payments as well as Credit & Debit Cards. Use the following to test ACH processing through the JetPay platform.
Routing Number (DDA) - 123123123
Account Number (ABA) - 123456789
Jetpay Supported Countries
Jetpay Supported Payment Processing Actions
✔ Authorize
✔ Capture
✔ Void
✔ Credit
✔ Recurring
✖ Card Store
Key Features
About Trexle
Trexle is a powerful online recurring subscription billing platform that integrate Jetpay and other +100 payment gateways with Omnipay and other dozen of e-commerce platforms.
About Jetpay
JetPay Merchant Services, LLC (jetpay.com & jetpayms.com) is a merchant account provider specializing in technology solutions for the e-commerce and card-not-present marketplace. JetPay’s website states that the company’s services adapt to any website/payment application, as it requires no special software or setup. JetPay has been an accredited business of the Better Business Bureau since 2015 and currently holds an “A+” rating.
About Omnipay
Omnipay is a payment processing library for PHP. It has been designed based on ideas from Active Merchant, plus experience implementing dozens of gateways for CI Merchant. It has a clear and consistent API, is fully unit tested, and even comes with an example application to get you started.