Module: ActiveCampaign::API::Contacts
- Defined in:
- lib/active_campaign/api/contacts.rb
Overview
Interface to contact endpoints
Instance Method Summary collapse
-
#create_contact(params) ⇒ Hash
Create a new contact.
-
#delete_contact(id) ⇒ Hash
Deletes a contact with given id.
-
#show_contact(id) ⇒ Hash
Get a single contact.
-
#show_contacts(filters: {}, orders: {}, **params) ⇒ Hash
Get a list of contacts.
-
#sync_contact(params) ⇒ Hash
Sync an existing contact or create a new one.
-
#update_contact(id, params) ⇒ Hash
Update an existing contact with given id.
Instance Method Details
#create_contact(params) ⇒ Hash
Create a new contact
22 23 24 |
# File 'lib/active_campaign/api/contacts.rb', line 22 def create_contact(params) post('contacts', contact: params) end |
#delete_contact(id) ⇒ Hash
Deletes a contact with given id
101 102 103 |
# File 'lib/active_campaign/api/contacts.rb', line 101 def delete_contact(id) delete("contacts/#{id}") end |
#show_contact(id) ⇒ Hash
Get a single contact
33 34 35 |
# File 'lib/active_campaign/api/contacts.rb', line 33 def show_contact(id) get("contacts/#{id}") end |
#show_contacts(filters: {}, orders: {}, **params) ⇒ Hash
Get a list of contacts
87 88 89 90 91 92 |
# File 'lib/active_campaign/api/contacts.rb', line 87 def show_contacts(filters: {}, orders: {}, **params) params[:filters] = filters if filters.any? params[:orders] = orders if orders.any? get('contacts', params) end |
#sync_contact(params) ⇒ Hash
Sync an existing contact or create a new one
48 49 50 |
# File 'lib/active_campaign/api/contacts.rb', line 48 def sync_contact(params) post('contact/sync', contact: params) end |
#update_contact(id, params) ⇒ Hash
Update an existing contact with given id
117 118 119 |
# File 'lib/active_campaign/api/contacts.rb', line 117 def update_contact(id, params) put("contacts/#{id}", contact: params) end |