Method: Users#get_crm_users

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

#get_crm_users(options = nil) ⇒ Object

Get crm users.

Get users info in crm.

Parameters

options

(Hash) – List of Resource Collection Options shown above can be used as parameter.

First Example

@data = @mints_user.get_crm_users

Second Example

options = { "sort": "id", "fields": "id, email" }
@data = @mints_user.get_crm_users(options)


19
20
21
# File 'lib/user/crm/users.rb', line 19

def get_crm_users(options = nil)
    return @client.raw("get", "/crm/users", options)
end