Integrate NodeJS and Pin Payments
Trexle connects NodeJS to Pin Payments and 100+ other payment gateways using a single plugin for one time annual fee
Take the credentials you just obtained from Pin Payments and navigate to Trexle dashboard, click Payments Gateways and select Pin Payments from the drop down menu as shown below.
Fill into your Pin Payments credential and click Add Gateway. Click the Activate button next to Pin Payments, 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
Successful Response
- Visa: 4200000000000000
- Mastercard: 5520000000000000
Card Declined
- Visa: 4100000000000001
- Mastercard: 5560000000000001
Insufficient Funds
- Visa: 4000000000000002
- Mastercard: 5510000000000002
Invalid CVV
- Visa: 4900000000000003
- Mastercard: 5550000000000003
Invalid Card
- Visa: 4800000000000004
- Mastercard: 5500000000000004
Processing Error
- Visa: 4700000000000005
- Mastercard: 5590000000000005
Suspected Fraud
- Visa: 4600000000000006
- Mastercard: 5540000000000006
Unknown
- Visa: 4400000000000099
- Mastercard: 5530000000000099
Invalid Expiry
To test invalid expiry dates, provide an expiry date in the past.
Pin Payments Supported Countries
Pin Payments 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 Pin Payments and other +100 payment gateways with NodeJS and other dozen of e-commerce platforms.
About Pin Payments
Pin Payments is Australia’s first all-in-one multi-currency online payment system, designed to bring the banks’ traditional merchant services up to date with today’s technology.
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.