Skip to main content
POST
/
apps
/
jumpcloud
/
search
/
systemusers
Search for system users
curl --request POST \
  --url https://api.provident.ae/v2/apps/jumpcloud/search/systemusers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "filter": {
    "email": {
      "$eq": "[email protected]"
    }
  },
  "fields": "_id, email, username",
  "limit": 1
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Search criteria for system users.

filter
object

A filter object (e.g., { "email": { "$eq": "[email protected]" } })

searchFilter
object

Alternative search filter object

fields
string

Comma-separated list of fields to return

limit
integer
default:10
skip
integer
default:0

Response

Search results