list_team_memberships
Retrieve and display team memberships for a specified team in Webex using the provided team ID and optional maximum results limit.
Instructions
List team memberships for a given team in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max | No | The maximum number of team memberships to return. | |
teamId | Yes | The ID of the team to list memberships for. |
Input Schema (JSON Schema)
{
"properties": {
"max": {
"description": "The maximum number of team memberships to return.",
"type": "integer"
},
"teamId": {
"description": "The ID of the team to list memberships for.",
"type": "string"
}
},
"required": [
"teamId"
],
"type": "object"
}