0.0.2 • Published 9 years ago

mastercardjs v0.0.2

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

mastercardjs

JSON Wrapper to Mastercard's XML API https://developer.mastercard.com/

'use strict';
var fs = require('fs');

var config = { 
	private_key: fs.readFileSync('MCKey.pem'),
	consumer_key: 'CONSUMER_KEY',
	env: 'sandbox'
};

var mastercard = require('mastercardjs')(config);

mastercard.merchantIdentifier.merchantId({
	Format: 'XML',
	MerchantId: 'STILLWATERSGENERALSTBRANSONMO'
}, function(error, response){
	console.log(JSON.stringify(response));
});
0.0.2

9 years ago

0.0.1

9 years ago