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.

UserEmail Criterion

The UserEmail Search Criterion searches for content based on the email assigned to the user account.

Arguments

  • value - string(s) representing the User email(s)
  • (optional) operator - operator constant (IN, EQ, LIKE)

Limitations

Solr search engine and Elasticsearch support IN and EQ operators only.

Example

REST API

1
2
3
4
5
<Query>
    <Filter>
        <UserEmailCriterion>j.black*</UserEmailCriterion>
    </Filter>
</Query>
1
2
3
4
5
"Query": {
    "Filter": {
        "UserEmailCriterion": "j.black*"
    }
}