Method: BaseCRM::ContactsService#all

Defined in:
lib/basecrm/services/contacts_service.rb

#allEnumerable

Retrieve all contacts

get ‘/contacts’

If you want to use filtering or sorting (see #where).

Returns:

  • (Enumerable)

    Paginated resource you can use to iterate over all the resources.



17
18
19
# File 'lib/basecrm/services/contacts_service.rb', line 17

def all
  PaginatedResource.new(self)
end