- 
                Notifications
    
You must be signed in to change notification settings  - Fork 185
 
Closed
Description
How do I search using the API client? The documentation shows the API supports it using a "search" action on a user (for instance). - http://developer.zendesk.com/documentation/rest_api/users.html
Specifically, I'm trying to search for a user by email.
All the following attempts return the full list of users paged in 100's.
zendesk_user = Zendesk::User.find(client, {:email => 'test@example.com'})
zendesk_user = Zendesk::User.find(client, :params => {:search => 'test@example.com'})
zendesk_user = Zendesk::User.find(client, :search => {:email => 'test@example.com'})How do I use the API client to search for Users, Organizations, etc? I looked in the gem but didn't see any code or tests for this feature.
Metadata
Metadata
Assignees
Labels
No labels