Skip to main content
POST
/
admin
/
isers
/
filter
Gets isers based on filter parameters
curl --request POST \
  --url https://api.example.com/admin/isers/filter \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "languageID": 1,
  "searchText": null,
  "iserHandle": null,
  "iserFirstName": null,
  "iserLastName": null,
  "iserEmail": null,
  "isHidden": null,
  "isSuspended": null,
  "planID": null,
  "primaryCountryIDs": null,
  "primaryEditionIDs": null,
  "roleIDs": null,
  "accountIDs": null,
  "iserIDs": null,
  "page": 1,
  "pageSize": 10
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
languageID
integer<int32>
default:1
searchText
string | null
iserHandle
string | null
iserFirstName
string | null
iserLastName
string | null
iserEmail
string | null
isHidden
boolean | null
isSuspended
boolean | null
planID
integer<int32> | null
primaryCountryIDs
integer<int32>[] | null
primaryEditionIDs
integer<int32>[] | null
roleIDs
integer<int32>[] | null
accountIDs
integer<int32>[] | null
iserIDs
integer<int32>[] | null
page
integer<int32>
default:1
pageSize
integer<int32>
default:10

Response

Success

success
boolean
data
unknown