There are some simple example about how to use ODATA filter in the API requests:
If you want to search on the email of the user from GET users, try this: {{url}}/v1.1/sites/:siteId/users?$filter=user/email eq 'example@gmail.com'
To check if any user's first name is included in a access group:
{{url}}/v1.1/sites/{site_id}/access_groups/{access_group_id}/users?$filter=first_name eq 'Test'
Examples
1. Is it possible to have a filter on entries https://clp-accept-user.my-clay.com/swagger/ui/index#!/Entries/Entries_GetEntriesV1_1
Yes, You can use the following parameters in the endpoint in CURL form
2. Can you help me with the filter by multiple user_id’s?
Yes, https://clp-accept-user.my-clay.com/v1.1/sites/*SITEID*/entries?$filter=user_id eq guid'*USERID*'
Core API examples:
1. While retrieving the list of IQs, we wanted to be able to filter by the collection id
{{url}}/v1.2/iqs?$filter=collection_id eq 'yourUUIDHere'
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article