module ActiveCampaignRb

API Client for the Active Campaign API v3

Constants

ENDPOINTS
LOGGER
VERSION

Public Instance Methods

config() click to toggle source
# File lib/active_campaign_rb.rb, line 21
def config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source
# File lib/active_campaign_rb.rb, line 25
def configure
  yield config if block_given?
end
http_client() click to toggle source
# File lib/active_campaign_rb.rb, line 29
def http_client
  @http_client ||= HttpClient.new(config)
end