Ptilinopus
API Wrapper for MailerLite Inspired by Gibbon
Installation
Add this line to your application's Gemfile:
gem 'ptilinopus'
And then execute:
$ bundle
Or install it yourself as:
$ gem install ptilinopus
Usage
First of all setup your API key:
api = Ptilinopus::API.new("api_key")
or
Ptilinopus::API.api_key = "api_key"
If you setup key with the second case you can make API call on the class itself:
Ptilinopus::API.call(:post, "subscribers/unsubscribe", {email: "test_email@test.com"})
Call API methods
Fetch groups:
api = Primary::API.new("api_key")
api.call(:get, "lists")
Adding a subscriber:
api = Primary::API.new("api_key")
api.call(:post, "subscribers/123456", {email: 'test_email@test.com'})
# where 123456 is a id of list
List of all methods you can find here [http://docs.mailerlite.com/]
Note: specify :get and :post types according to API documentaion
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request