Skip to main content
GET
/
users
List provisioned users
curl --request GET \
  --url https://eris.devops.truu.ai/api/v1/external/users \
  --header 'X-API-Key: <api-key>'
{
  "next_cursor": "<string>",
  "items": [
    {
      "tuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "domain_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "external_id": "<string>",
      "name": "<string>",
      "user_principal_name": "<string>",
      "email_addresses": [
        "<string>"
      ],
      "group_guid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "is_active": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.truu.ai/llms.txt

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

Authorizations

X-API-Key
string
header
required

Domain-scoped API key. Generate and manage keys from the API Keys page in Settings.

Accepted in two forms:

  • X-API-Key: <key> header (preferred)
  • Authorization: Bearer <key> header (also accepted)

Query Parameters

Filter by name or UPN (partial match)

is_active
boolean
page_size
integer
default:50
Required range: x <= 200
next_cursor
string

Response

Paginated list of users

next_cursor
string | null
items
object[]