list_files
Retrieve a list of files from a specific channel's file repository on TeamSpeak. Provide the channel ID, optional directory path, and password to access and manage stored files efficiently.
Instructions
List files in a channel's file repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | Channel ID to list files for | |
channel_password | No | Channel password if required (optional) | |
path | No | Directory path to list (default: root '/') | / |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"channel_id": {
"description": "Channel ID to list files for",
"type": "integer"
},
"channel_password": {
"description": "Channel password if required (optional)",
"type": "string"
},
"path": {
"default": "/",
"description": "Directory path to list (default: root '/')",
"type": "string"
}
},
"required": [
"channel_id"
],
"type": "object"
}