Moneybirx

Coverage StatusTest Status

This is an unofficial Moneybird API client. It uses HTTPoison for requests and Poison for dealing with JSON payloads.

Installation

The package can be installed by adding moneybirx to your list of dependencies in mix.exs:

def deps do
  [
    {:moneybirx, "~> 0.1.7"}
  ]
end

Configuration

First go to https://moneybird.com/user/applications/new and create an API token for Personal Use. Then configure Moneybirx to use your token:

# config/config.exs

config :moneybirx,
  endpoint: "https://moneybird.com/api/v2",
  token: "your-api-token"

Documentation

The documentation for this package can be found on HexDocs. If you want to know more about the Moneybird API itself, read it's official documentation.

Documentation is generated with ExDoc and published on HexDocs. The docs can be found at https://hexdocs.pm/moneybirx.