Users
Use the users
query to obtain a list of all registered users on your account. In addition, search for a specific user or a profile user by sending the userId
or profileId
as an argument.
User Role
users
: list the created user.
Available Arguments
Argument Name
Required?
Type
Description
userUUIDs
No
String
User database ID
profileUUIDs
No
String
User profile database ID
filters.createdAt.start
No
Date
Allows to filter users by createdAt
field, both start
and end
fields are mandatory when using this filter. (example below)
filters.createdAt.end
No
Date
Allows to filter users by createdAt
field, both start
and end
fields are mandatory when using this filter. (example below)
Available Fields
Field
Type
Description
name
String
Users name
email
String
Users email
phone
String
users phone number
databaseId
Sting
User's ID
Examples
Get the list of all users
Get list of users created under desired date range
Search for a user by ID
Search for a user by profile ID
Last updated