For the complete documentation index, see llms.txt. This page is also available as Markdown.

πŸ•΅οΈβ€β™€οΈSearching Users

This step shows how to filter users

Available parameters:

Parameter
Type
Description

name

string

Name of the user

surname

string

Surname of the user

email

string

Email of the user

username

string

Username of the user

user_id

string

GUID of the user

role

string

Role of the user (see)

mobile

string

Mobile of the user

page_size

integer

Page size

page_number

integer

Page number

If you like to see all users belonging to your account, you can achieve this by not sending any parameters to the request.

Example request:

curl -L -X POST 'https://<DOMAIN>/api/groups/xapi/user/search' \
-H 'Content-Type: application/json' \
-d '{
    "name": "john",
    "page_size": 10,
    "page_number": 1
}'
#user_id, name, surname, username, email, role, mobile, page_size, page_number
client.users.search_user({
    "name": "John"
})

Example response:

Last updated