PayPro

Ruby Client for PayPro API v1

License: MIT

This library provides a Ruby client to connect with the PayPro API.

Requirements

  • Ruby >= 2.0.0

Installation

We provide an installation guide on https://paypro.nl/developers/api-clients/ruby.

Getting started

Example of creating a payment:

require 'paypro'

client = PayPro::Client.new('YOUR_API_KEY')
client.command = 'create_payment';
client.params = { amount: 500, consumer_email: '[email protected]', pay_method: 'ideal/INGBNL2A' }
client.execute

Documentation

For guides and code examples you can go to https://paypro.nl/developers/docs.

Contributing

If you want to contribute to this project you can fork the repository. Create a new branch, add your feature and create a pull request. We will look at your request and determine if we want to add it.

License

MIT