list_team_members
Retrieve and paginate team member data by specifying a team ID, limit, and offset for efficient team management and retrospective planning.
Instructions
List team members with pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | number | |
offset | No | number | |
teamId | Yes | string |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 1000,
"description": "number",
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"offset": {
"default": 0,
"description": "number",
"minimum": 0,
"type": "integer"
},
"teamId": {
"description": "string",
"pattern": "^[a-zA-Z0-9]{22}$",
"type": "string"
}
},
"required": [
"teamId"
],
"type": "object"
}