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.

UserLogin Criterion

The UserLogin Search Criterion searches for content based on the User ID.

Arguments

  • value - string(s) representing the User logins(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>
        <UserLoginCriterion>johndoe</UserLoginCriterion>
    </Filter>
</Query>
1
2
3
4
5
"Query": {
    "Filter": {
        "UserLoginCriterion": "johndoe"
    }
}