Skip to main content
GET
/
api
/
ee
/
users
List users
curl --request GET \
  --url https://api.example.com/api/ee/users \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "role": "OWNER",
    "createdAt": "2023-11-07T05:31:56Z",
    "lastActivityAt": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.sourcebot.dev/llms.txt

Use this file to discover all available pages before exploring further.

This API is only available with an active Enterprise license. Please add your license key to activate it.

Authorizations

Authorization
string
header
required

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

Response

List of organization members.

id
string
required
name
string | null
required
email
string | null
required
role
enum<string>
required
Available options:
OWNER,
MEMBER,
GUEST
createdAt
string<date-time>
required
lastActivityAt
string<date-time> | null
required