README.md
# ActiveCampaign
[](https://hex.pm/packages/active_campaign)
[](https://hexdocs.pm/active_campaign/)
[](https://github.com/Health-Union/active_campaign/blob/master/LICENSE)
[](https://github.com/Health-Union/active_campaign/commits/main)
A thin wrapper around the Active Campaign [version 3 API](https://developers.activecampaign.com/reference/overview).
## Installation
First, add the ActiveCampaign package to your `mix.exs` dependencies:
```elixir
def deps do
[
{:active_campaign, "~> 0.2.0"}
]
end
```
and run `$ mix deps.get`
## Usage
Put your API key and API URL in your `config.exs` file:
```elixir
config :active_campaign,
api_key: "myApiKey",
api_url: "https://example.api-us1.com"
```