Method: Contacts#get_contact_tags

Defined in:
lib/user/crm/contacts.rb

#get_contact_tags(contact_id) ⇒ Object

Get contact tags.

Get tags of a contact.

Parameters

contact_id

(Integer) – Contact id.

Example

@data = @mints_user.get_contact_tags(1)


237
238
239
# File 'lib/user/crm/contacts.rb', line 237

def get_contact_tags(contact_id)
  @client.raw('get', "/crm/contacts/#{contact_id}/tags")
end