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

Only the IN and EQ operators are supported.

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>
        <UserEmailCriterion>j.black*</UserEmailCriterion>
    </Filter>
</Query>
1
2
3
4
5
"Query": {
    "Filter": {
        "UserEmailCriterion": "j.black*"
    }
}