Method: Contacts#get_contact_user
- Defined in:
- lib/user/customer-data/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 = @cxf_user.get_contact_user(66)
194 195 196 |
# File 'lib/user/customer-data/contacts.rb', line 194 def get_contact_user(contact_id) @client.raw('get', "/customer-data/contacts/#{contact_id}/users") end |