Payzippy payment gateway api implementation for node. Provides API for charging, handling response, refund and status check.
Install the module with: npm install payzippy
var payzippy = require('payzippy').configure(CONFIGURATIONS);
payzippy.charge(data, cb); // Charging API
payzippy.response(req, cb); // Response from callback url
payzippy.refund(data, cb); // Refund API
payzippy.status(data, cb); //Status Check API
All transaction amount is in INR paisa. Response API accepts a HttpReq Object from express server.
For More ducumentation Refer https://www.payzippy.com/apidoc
Example Express Server Using Payzippy API
https://github.com/niklabh/payzippy-example
Contributions are most welcome
Licensed under the MIT license.