get_team_members
Retrieve all users who are members of a specific team to audit membership and understand team-based access permissions.
Instructions
Retrieves a list of all users who are members of a specific team, including their basic information and status. Use this to audit team membership and understand who has team-based access.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
teamId | Yes | ID of the team to retrieve members for |
Input Schema (JSON Schema)
{
"properties": {
"teamId": {
"description": "ID of the team to retrieve members for",
"type": "string"
}
},
"required": [
"teamId"
],
"type": "object"
}