Method: Contacts#get_contact_user
- Defined in:
- lib/user/crm/contacts.rb
#get_contact_user(contact_id) ⇒ Object
Get contact user.
Get user data of a contact.
Parameters
TODO: Replace Resource collection options url
- contact_id
-
(Integer) – Contact id.
- options
-
(Hash) – List of Resource Collection Options shown above can be used as parameter.
Example
@data = @mints_user.get_contact_user(66)
169 170 171 |
# File 'lib/user/crm/contacts.rb', line 169 def get_contact_user(contact_id) @client.raw('get', "/crm/contacts/#{contact_id}/users") end |