Search users (POST)
Log in to add to favouritesPOST/api/security/users/search
Responses
Examples
Get the first page of 50 users that contain the word tyler in the username or email, ordered by created date descending
POST: /api/security/users/search
{
"pageIndex": 0,
"pageSize": 50,
"where": [
{
"or": [
{
"field": "username",
"contains": "tyler"
},
{
"field": "Email",
"contains": "tyler"
}
]
}
],
"orderBy": [
{
"desc": "created"
}
]
}
Remarks
Permissions
Member of System Administrators
.