Get team details and members
umami_get_teamRetrieve a team's details, including full member list and roles, by providing its team ID. Choose markdown or JSON output.
Instructions
Get a team's details, including its full member list and roles.
Args:
team_id (string, required): Team UUID. Get this from umami_list_teams.
response_format ('markdown' | 'json'): Output format (default: 'markdown').
Returns: JSON shape: { "id": string, "name": string, "access_code": string, "members": [ { "user_id": string, "username": string, "role": string } ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team_id | Yes | Team UUID. | |
| response_format | No | Output format: 'markdown' for a readable summary, 'json' for raw structured data. | markdown |