Integrate NodeJS and Ingenico
Trexle connects NodeJS to Ingenico and 100+ other payment gateways using a single plugin for one time annual fee
Ingenico and NodeJS Integration Guide
For Ingenico (Ogone) integration you will need the following credentials: Ogone PSPID, SHA-IN passprharse and SHA-OUT passphrase.
PSPID stands for payment service provider ID. It’s the name you chose when you first registered with Ogone to identify the business your account is linked to.
To retrieve SHA-IN and SHA-OUT credentials, log to your Ingenico account. (You need your PSPID and password to log in.)
Go to Configuration > Technical Information > Data and Origin Verification
Click on the ‘Visible‘ button next to Sha-IN field to reveal the SHA-IN passphrase
Now navigate to Configuration > Technical Information > Transaction Feedback
Click on the ‘Visible‘ button next to Sha-OUT field to reveal the SHA-OUT passphrase
Take the credentials you just obtained from Ingenico and navigate to Trexle dashboard, click Payments Gateways and select Ingenico from the drop down menu as shown below.
Fill into your Ingenico credential and click Add Gateway. Click the Activate button next to Ingenico, 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
o make test payments with split credit/debit cards, in every submission mode you can make use of the following test card numbers:
Brand | Type | Card number |
---|---|---|
MasterCard | Credit | 5399 9999 9999 9999 |
MasterCard | Debit | 5101 1695 7311 2521 |
MasterCard | Unknown | 5100 8678 7107 1536 |
VISA | Credit | 4000 0243 2959 6391 |
VISA | Debit | 4000 0685 5800 2134 |
VISA | Unknown | 4111 1111 1111 1111 |
Note: Although this is a generally accepted test card, if you have configured not to accept “unknown” card types, tests with this card number will be declined.
Ingenico Supported Countries
Ingenico 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 Ingenico and other +100 payment gateways with NodeJS and other dozen of e-commerce platforms.
About Ingenico
Ingenico ePayments is part of Ingenico which is a France-based company, whose business is to provide the technology involved in secure electronic transactions. Its traditional business is based on the manufacture of point of sale (POS) payment terminals, but it also includes complete payment software and related services, also software for merchants.
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.