Skip to content
For AI agents: the complete documentation index is available at llms.txt; this page is also available as Markdown at index.md.

IsBookmarked Criterion

The IsBookmarked Search Criterion searches for location based on whether it's added to a list of Favourites or not. It works with current user reference.

This Criterion is available only for location Search.

Arguments

  • value - bool representing whether to search for a location that is added (default true) or not added (false) to the Favourites list

Example

You can use this Search Criterion over the REST API, in the payload of the POST /views request:

1
2
3
4
5
<Query>
    <Filter>
        <IsBookmarkedCriterion>true</IsBookmarkedCriterion>
    </Filter>
</Query>
1
2
3
4
5
"Query": {
    "Filter": {
        "IsBookmarkedCriterion": true
    }
}