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.

IsUserEnabled Criterion

The IsUserEnabled Search Criterion searches for user accounts that are enabled or disabled.

Arguments

  • (optional) value - bool representing whether to search for enabled (default true) or disabled user accounts

Example

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