Get an Umami user's details
umami_get_userRetrieve a Umami user's profile, including role, websites, and teams. Specify the user ID; admins can look up others, users can look up themselves.
Instructions
Get a login account's details, plus the websites and teams it has access to.
Admin access required for other users; any authenticated user can look up themselves. Not available on Umami Cloud.
Args:
user_id (string, required): User UUID. Get this from umami_list_users.
response_format ('markdown' | 'json'): Output format (default: 'markdown').
Returns: JSON shape: { "id": string, "username": string, "role": string, "created_at": string, "websites": [ { "id": string, "name": string, "domain": string } ], "teams": [ { "id": string, "name": string } ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | User UUID. | |
| response_format | No | Output format: 'markdown' for a readable summary, 'json' for raw structured data. | markdown |