like: Search Examples
The search operation like
will search for entities where the search attribute value partially matches the search criteria.
The search operation like
should only be used to search for string type values.
The search operation like
is case insensitive. You can use it when filtering the _email field, allowing the search to find emails regardless of whether they are written in lowercase or uppercase..
Example 1: Search for entities with partial value string
Search:
- Use the search API: Device Search
- Match the attribute
_id
with values that contain877
- Limit the number of results to 10 per page
- Return the first page
Filter object will look like this:
{
"filter": {
"_id": {
"like": "877"
}
},
"limit": 10,
"page": 0
}
Encoded API call:
Updated 30 days ago