Skip to main content
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.

Authorizations

Authorization
string
header
required

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

Path Parameters

tenantId
string<uuid>
required

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

Query Parameters

take
integer
default:50

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

Required range: 1 <= x <= 50
from
string

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

Response

A paginated list of tenant members

members
object[]
required
next
string

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