Passer au contenu principal
GET
https://{teamSlug}.teams.auth0.com
/
api
/
tenants
/
{tenantId}
/
members
Retrieve a paginated list of members for a specific tenant.
curl --request GET \
  --url https://{teamSlug}.teams.auth0.com/api/tenants/{tenantId}/members \
  --header 'Authorization: Bearer <token>'
{
  "members": [
    {
      "id": "<string>",
      "name": "<string>",
      "email": "jsmith@example.com",
      "roles": [
        "owner"
      ],
      "given_name": "<string>",
      "family_name": "<string>",
      "nickname": "<string>"
    }
  ],
  "next": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs-dev.auth0-mintlify.app/llms.txt

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

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

tenantId
string<uuid>
requis

The unique ID of the tenant. Unique identifier of the tenant

Paramètres de requête

take
integer
défaut:50

Maximum number of items to return per page. Defaults to 50. Maximum 50

Plage requise: 1 <= x <= 50
from
string

Checkpoint cursor for pagination; use the 'next' value from a previous response to fetch the next page

Réponse

A paginated list of tenant members

members
object[]
requis
next
string

Opaque cursor for next page; not sent if no more results