Search users (GET)
Log in to add to favouritesGET/api/security/users/search?order={order}&where={where}&orderBy={orderBy}&pageIndex={pageIndex}&pageSize={pageSize}
Parameters
Name | Parameter type | Type | Format | Description |
---|---|---|---|---|
pageIndex | query | number | integer | The index of the page. |
pageSize | query | number | integer | The number of results per page. The default is 25. |
orderBy | query | string | - | An array of order by objects |
where | query | string | - | An expression array of query operator objects |
Responses
Examples
Get the first page of 5 users that contain the word tyler in the username or email
GET: /api/security/users?pageSize=5&where=[{"or":[{"field":"Username","contains":"tyler"},{"field":"Email","contains":"tyler"}]}]
Remarks
Permissions
Member of System Administrators
.