GET
/
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

Authorization
string
header
required

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

Query Parameters

startCursor
string

The cursor to start fetching from

size
number
default:10

The number of items to fetch

Required range: 0 < x <= 100
Example:

10

email

The emails to filter by. This is purely an OR filter

Response

200
application/json
A list of users
results
object[]
required
total
number
required

The total number of items in your workspaces based on your search parameters

Required range: x > 0
pageInfo
object
required

Information about the current page