メインコンテンツへスキップ
GET
https://{teamSlug}.teams.auth0.com
/
api
/
members
/
{id}
Retrieve basic information for a specific team member
curl --request GET \
  --url https://{teamSlug}.teams.auth0.com/api/members/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "given_name": "<string>",
  "family_name": "<string>",
  "nickname": "<string>",
  "email": "jsmith@example.com",
  "role": "teams_owner"
}

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.

パスパラメータ

id
string
必須

The unique ID of the team member to retrieve.

レスポンス

Team member details retrieved successfully

id
string
必須

Unique ID of the team member

:

"auth0|68da0038bab277c02ed1d4c8"

"google-oauth2|123456789012345678901"

name
string
必須

Full name of the team member.

given_name
string
必須

First name of the team member. Returns empty string if not set.

family_name
string
必須

Last name of the team member. Returns empty string if not set.

nickname
string
必須

Nickname of the team member. Returns empty string if not set.

email
string<email>
必須

Email of the team member.

role
enum<string>
必須

The team-level role.

利用可能なオプション:
teams_owner,
teams_contributor,
teams_report_viewer
:

"teams_owner"