move_client
Relocate a user to a different channel on a TeamSpeak server by specifying the client ID and destination channel ID, enabling efficient user management.
Instructions
Move a client to another channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | Destination channel ID | |
client_id | Yes | Client ID |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"channel_id": {
"description": "Destination channel ID",
"type": "integer"
},
"client_id": {
"description": "Client ID",
"type": "integer"
}
},
"required": [
"client_id",
"channel_id"
],
"type": "object"
}