メインコンテンツへスキップ
GET
https://{teamSlug}.teams.auth0.com
/
api
/
members
Retrieve a paginated list of all team members
curl --request GET \
  --url https://{teamSlug}.teams.auth0.com/api/members \
  --header 'Authorization: Bearer <token>'
{
  "members": [
    {
      "id": "<string>",
      "name": "<string>",
      "given_name": "<string>",
      "family_name": "<string>",
      "nickname": "<string>",
      "email": "jsmith@example.com",
      "role": "teams_owner"
    }
  ],
  "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.

承認

Authorization
string
header
必須

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

クエリパラメータ

take
integer
デフォルト:50

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

必須範囲: 1 <= x <= 50
from
string

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

レスポンス

A paginated list of team members

members
object[]
必須
next
string

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