Integrate NodeJS and Open Payment Gateway
Trexle connects NodeJS to Open Payment Gateway and 100+ other payment gateways using a single plugin for one time annual fee
Open Payment Gateway and NodeJS Integration Guide
In order to integrate Open Payment Gateway you will need the following credentials: Merchant code and Payment Token.
Login Name: [your merchant code]
Password: [your payment token]
To generate payment tokens, you access the Merchant Portal (requires access rights).
Contact Optile support team at [email protected] for help with permissions.
Take the credentials you just obtained from Open Payment Gateway and navigate to Trexle dashboard, click Payments Gateways and select Open Payment Gateway from the drop down menu as shown below.
Fill into your Open Payment Gateway credential and click Add Gateway. Click the Activate button next to Open Payment Gateway, and it will give you a success message and the button will turn into green. You should see something like below.
In your NodeJS project, open a terminal and issue the following command:
npm install trexlejs
If you want to test, consider writing the following example in a test.js file:
var Trexle = require('trexlejs');
var trexle = Trexle.setup({
key: ‘your-api-key’,
production: false
});
trexle.createCharge({
amount: 400,
currency: ‘usd’,
description: ‘test charge’,
email: ‘[email protected]’,
ip_address: ‘66.249.79.118’,
card: {
number: ‘4242424242424242’,
expiry_month: 8,
expiry_year: 2018,
cvc: 123,
name: ‘John Milwood’,
address_line1: ‘423 Shoreline Park’,
address_city: ‘Mountain View’,
address_postcode: 94043,
address_state: ‘CA’,
address_country: ‘US’
}
}, function (response) {
console.log(response.body);
});
Then run the code:
node test.js
Visa
- 4111 1111 1111 1111
- 4012 8888 8888 1881
MasterCard
- 5500 0000 0000 0004
- 5544 4444 4444 4444
- 5555 5555 5555 4444
American Express
- 3400 0000 0000 009
- 3700 0000 0000 002
Diner’s Club
- 3000 0000 0000 04
Discover
- 6011 0000 0000 0004
Holder name: any, min. 3 chars
Expiry date: any date in the future
CVV: any 3-digit number
Open Payment Gateway Supported Countries
Open Payment Gateway 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 Open Payment Gateway and other +100 payment gateways with NodeJS and other dozen of e-commerce platforms.
About Open Payment Gateway
Optile, based in Germany, provides global businesses with an agile modular technology to exceed any expectation of their customers while being able to flexibly operate their payment setup. Their Open Payment Gateway, is a next-generation payment gateway, designed for international enterprises with a goal to enable their faster scaling to new markets. Open Payment Gateway unifies all payment-related processes, and provides intelligent optimization tools to boost conversion.
About NodeJS
Node.js is an open-source, cross-platform JavaScript runtime environment for executing JavaScript code server-side, and uses the Chrome V8 JavaScript engine. Historically, JavaScript was used primarily for client-side scripting, in which scripts written in JavaScript are embedded in a webpage's HTML, to be run client-side by a JavaScript engine in the user's web browser. Node.js enables JavaScript to be used for server-side scripting, and runs scripts server-side to produce dynamic web page content before the page is sent to the user's web browser.