modulr

Elixir wrapper for the Modulr API


License
MIT

Documentation

Modulr

Elixir wrapper for the Modulr API.

Installation

  1. Add modulr to your list of dependencies in mix.exs:
def deps do
  [{:modulr, "~> 0.4.1"}]
end

then...

mix deps.get
  1. Add configuration to your app:
config :modulr,
  api_base: "https://api-sandbox.modulrfinance.com/api-sandbox/ ",
  api_version: "1",
  api_key: "<your-api-key>",
  api_hmac: "<your-hmac>"

Documentation

Managing Customers
Managing Accounts
Managing Beneficiaries
Managing Payments
Managing Notifications
Mock Inbound Payments

You can read the docs at hex.pm

Development Setup

If you are making changes to this codebase and want to test your code, you will need to copy the sample secret file.

cp config/secret.sample.exs config/secret.exs

Then add your relevant Modulr access details here.