assign_client_to_group
Manage TeamSpeak server group memberships by adding or removing clients using their database ID and group ID for streamlined user administration.
Instructions
Add or remove a client from a server group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform | |
client_database_id | Yes | Client database ID to modify group membership for | |
group_id | Yes | Server group ID to add/remove client from |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"action": {
"description": "Action to perform",
"enum": [
"add",
"remove"
],
"type": "string"
},
"client_database_id": {
"description": "Client database ID to modify group membership for",
"type": "integer"
},
"group_id": {
"description": "Server group ID to add/remove client from",
"type": "integer"
}
},
"required": [
"client_database_id",
"action",
"group_id"
],
"type": "object"
}