Module: ActiveCampaign::API::Lists
- Defined in:
- lib/active_campaign/api/lists.rb
Overview
Interface to list endpoints
Instance Method Summary collapse
-
#create_list(params) ⇒ Hash
Create a new list.
-
#delete_list(id) ⇒ Hash
Deletes a list with given id.
-
#show_list(id) ⇒ Hash
Get a single list.
-
#show_lists(search = nil) ⇒ Array<Hash>
Get a list of lists.
Instance Method Details
#create_list(params) ⇒ Hash
Create a new list
35 36 37 |
# File 'lib/active_campaign/api/lists.rb', line 35 def create_list(params) post('lists', list: params) end |
#delete_list(id) ⇒ Hash
Deletes a list with given id
68 69 70 |
# File 'lib/active_campaign/api/lists.rb', line 68 def delete_list(id) delete("lists/#{id}") end |
#show_list(id) ⇒ Hash
Get a single list
46 47 48 |
# File 'lib/active_campaign/api/lists.rb', line 46 def show_list(id) get("lists/#{id}") end |
#show_lists(search = nil) ⇒ Array<Hash>
Get a list of lists
57 58 59 |
# File 'lib/active_campaign/api/lists.rb', line 57 def show_lists(search = nil) get('lists', search: search) end |