fathom_list_team_members
Retrieve team member information from Fathom, including names, emails, and join dates. Filter by specific teams or view all members with pagination support.
Instructions
List members of a specific team or all teams in Fathom.
This tool retrieves team member information including names, emails, and when they joined.
Args:
team (string): Filter by team name (optional - shows all members if not specified)
cursor (string): Pagination cursor from previous response
response_format ('markdown'|'json'): Output format (default: 'markdown')
Returns: Paginated list of team members with:
name: Member's display name
email: Member's email address
created_at: When the member was added
Examples:
List all members: {}
Filter by team: { team: 'Sales' }
Get as JSON: { response_format: 'json' }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team | No | Filter by team name | |
| cursor | No | Pagination cursor from previous response | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |