Module: ActiveCampaign::API::Accounts
- Defined in:
- lib/active_campaign/api/accounts.rb
Overview
Interface to account endpoints
Instance Method Summary collapse
-
#bulk_delete_accounts(ids) ⇒ Hash
Deletes a account with given ids.
-
#create_account(params) ⇒ Hash
Create a new account.
-
#delete_account(id) ⇒ Hash
Deletes a account with given id.
-
#show_account(id) ⇒ Hash
Get a single account.
-
#show_accounts(search = nil) ⇒ Array<Hash>
Get a list of accounts.
-
#update_account(id, params) ⇒ Hash
Update an existing account with given id.
Instance Method Details
#bulk_delete_accounts(ids) ⇒ Hash
Deletes a account with given ids
78 79 80 |
# File 'lib/active_campaign/api/accounts.rb', line 78 def bulk_delete_accounts(ids) delete('accounts/bulk_delete', ids: ids) end |
#create_account(params) ⇒ Hash
Create a new account
20 21 22 |
# File 'lib/active_campaign/api/accounts.rb', line 20 def create_account(params) post('accounts', account: params) end |
#delete_account(id) ⇒ Hash
Deletes a account with given id
67 68 69 |
# File 'lib/active_campaign/api/accounts.rb', line 67 def delete_account(id) delete("accounts/#{id}") end |
#show_account(id) ⇒ Hash
Get a single account
31 32 33 |
# File 'lib/active_campaign/api/accounts.rb', line 31 def show_account(id) get("accounts/#{id}") end |
#show_accounts(search = nil) ⇒ Array<Hash>
Get a list of accounts
42 43 44 |
# File 'lib/active_campaign/api/accounts.rb', line 42 def show_accounts(search = nil) get('accounts', search: search) end |
#update_account(id, params) ⇒ Hash
Update an existing account with given id
56 57 58 |
# File 'lib/active_campaign/api/accounts.rb', line 56 def update_account(id, params) put("accounts/#{id}", account: params) end |