Module: ActiveCampaign::API::AccountContacts
- Defined in:
- lib/active_campaign/api/account_contacts.rb
Overview
Interface to account endpoints
Instance Method Summary collapse
-
#create_account_contact(params) ⇒ Hash
Create a new account.
-
#delete_account_contact(id) ⇒ Hash
Deletes a account with given id.
-
#show_account_contact(id) ⇒ Hash
Get a single account.
-
#show_account_contacts(search = nil) ⇒ Array<Hash>
Get a list of accounts.
-
#update_account_contact(id, params) ⇒ Hash
Update an existing account with given id.
Instance Method Details
#create_account_contact(params) ⇒ Hash
Create a new account
21 22 23 |
# File 'lib/active_campaign/api/account_contacts.rb', line 21 def create_account_contact(params) post('accountContacts', account_contact: params) end |
#delete_account_contact(id) ⇒ Hash
Deletes a account with given id
69 70 71 |
# File 'lib/active_campaign/api/account_contacts.rb', line 69 def delete_account_contact(id) delete("accountContacts/#{id}") end |
#show_account_contact(id) ⇒ Hash
Get a single account
32 33 34 |
# File 'lib/active_campaign/api/account_contacts.rb', line 32 def show_account_contact(id) get("accountContacts/#{id}") end |
#show_account_contacts(search = nil) ⇒ Array<Hash>
Get a list of accounts
43 44 45 |
# File 'lib/active_campaign/api/account_contacts.rb', line 43 def show_account_contacts(search = nil) get('accountContacts', search: search) end |
#update_account_contact(id, params) ⇒ Hash
Update an existing account with given id
58 59 60 |
# File 'lib/active_campaign/api/account_contacts.rb', line 58 def update_account_contact(id, params) put("accountContacts/#{id}", account_contact: params) end |