Gets a paginated list of all users
curl --request GET \
--url https://api.rallyuxr.com/api/public/v1/users \
--header 'Authorization: Bearer <token>'
{
"results": [
{
"userId": "<string>",
"fullname": "<string>",
"email": "<string>",
"jobRole": "<string>",
"profilePic": "<string>",
"status": "ACTIVE",
"connectedAccounts": [
{
"type": "CALENDLY",
"status": "CONNECTED"
}
],
"seat": "RESEARCHER_PAID",
"role": "OPS_MANAGER"
}
],
"total": 123,
"pageInfo": {
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "<string>",
"endCursor": "<string>"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
The cursor to start fetching from
The number of items to fetch
0 < x <= 100
10
The emails to filter by. This is purely an OR filter
Response
The id of the user
The full name of the user
The email of the user
The job role of the user
The profile picture of the user
The status of the user
INVITED
, ACTIVE
, DEACTIVATED
"ACTIVE"
The connected accounts of the user
The seat type of the user
RALLY
, RESEARCHER_FREE
, RESEARCHER_PAID
"RESEARCHER_PAID"
The role of the user
DEVELOPER
, OBSERVER
, RESEARCHER
, OPS_MANAGER
, SUPER_ADMIN
, CUSTOM
, COLLABORATOR
"OPS_MANAGER"
The total number of items in your workspaces based on your search parameters
x > 0
Information about the current page
Whether there are additional pages of results
Whether there is a prior page of results
The start of the current page of results
The end of the current page of results. Use to fetch the next page
curl --request GET \
--url https://api.rallyuxr.com/api/public/v1/users \
--header 'Authorization: Bearer <token>'
{
"results": [
{
"userId": "<string>",
"fullname": "<string>",
"email": "<string>",
"jobRole": "<string>",
"profilePic": "<string>",
"status": "ACTIVE",
"connectedAccounts": [
{
"type": "CALENDLY",
"status": "CONNECTED"
}
],
"seat": "RESEARCHER_PAID",
"role": "OPS_MANAGER"
}
],
"total": 123,
"pageInfo": {
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "<string>",
"endCursor": "<string>"
}
}