GET
/
users
curl --request GET \
  --url https://core.api.ravennahq.com/api/users \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "email": "<string>",
      "image": "<string>",
      "slackTeamId": "<string>",
      "slackUserId": "<string>",
      "slackRealName": "<string>",
      "slackImageUrl": "<string>",
      "emailVerified": "<string>",
      "defaultWorkspaceId": "<string>",
      "isGuestCreated": true,
      "isBot": true,
      "createdAt": "<string>",
      "auth0Id": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "totalCount": 123,
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

skip
number | null
Required range: x >= 1
offset
number | null
Required range: x >= 0
cursor
string | null
limit
number | null
default:100
Required range: 1 <= x <= 10000
set
string | null
sortBy
string | null
sortDirection
enum<string> | null
Available options:
asc,
desc
groupBy
string | null
groupDirection
enum<string> | null
Available options:
asc,
desc

Response

200
application/json
Successful response
items
object[]
required
totalCount
number
required
nextCursor
string | null