List a team's websites
umami_get_team_websitesList all websites belonging to a team, with optional filtering by name or domain to quickly locate specific sites.
Instructions
List every website belonging to a team.
Args:
team_id (string, required): Team UUID.
search (string, optional): Case-insensitive substring to filter by name or domain.
response_format ('markdown' | 'json'): Output format (default: 'markdown').
Returns: JSON shape: { "count": number, "websites": [ { "id": string, "name": string, "domain": string } ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| search | No | Case-insensitive substring to filter by name or domain. | |
| team_id | Yes | Team UUID. | |
| response_format | No | Output format: 'markdown' for a readable summary, 'json' for raw structured data. | markdown |