{% extends "docs/base.html" %} {% block docs_content %}
Fetch a specific member detail.
GET /api/v1/teams/{team_slug}/members/{username}curl \
--header "Authorization: Bearer $PEARING_API_TOKEN" \
"$PEARING_API_URL/v1/teams/platform/members/alice"200 OK with member detail. The user_email field is part of this gated member/staff response.
{
"user_username": "alice",
"user_email": "<private>",
"role": "member"
}404 Not Found when team, user, or membership does not exist.Common auth errors are documented on the API overview page.