No release in over a year
Ruby API wrapper for ActiveCampaign API v3
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Gem Version Maintainability Test Coverage

RactiveCampaign

Ruby API wrapper for ActiveCampaign API v3

Installation

Add this line to your application's Gemfile:

gem "ractive_campaign"

And then execute:

$ bundle install

Or install it yourself as:

$ gem install ractive_campaign

Usage

Config

# config/initializers/ractive_campaign.rb

ActiveCampaign.configure do |config|
  config.api_url = ENV["AC_API_URL"] # ex.: https://mystartup.api-us1.com/api/3
  config.api_key = ENV["AC_API_KEY"]
end

Examples

Contact

# new
harry = ActiveCampaign::Contact.new firstName: "Harry",
                                    lastName: "Potter",
                                    email: "potter.hurray@hogwash.com"
harry.save

# create
hermione = ActiveCampaign::Contact.new firstName: "Hermione",
                                       lastName: "Granger",
                                       email: "mione@drtooth.com"

# update
ron = ActiveCampaign::Contact.create email: "ron1988@hogwash.com", lastName: "Weasley"
ron.firstName = "Ron"
ron.save

Tag

ActiveCampaign::Tag.create tag: "hogwarts"

Contact tags

harry = ActiveCampaign::Contact.find_by email: "potter.hurray@hogwash.com"

# add a contact tag
harry.add_tag "hogwargs"

# remove a tag
harry.remove_tag "hogwarts"

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/wedsonlima/ractive_campaign. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the RactiveCampaign project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.