This is a wrapper for the Payoneer API. Also converts all the default XML responses from Payoneer to Javascript objects, so you can handle the responses with ease.
git clone https://github.com/VoxFeed/payoneer
npm install
Payoneer = require('payoneer');
config = require('/path/to/config.json');
payoneer = new Payoneer(config);
payoneer.getVersion(function(error, data) {
if (error) return console.error(error);
console.log(data);
});
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Payoneer's SDK is AWFUL so a wrapper was right and necessary.
TODO: Marvelous people goes here
TODO: Awesome license goes here