get_file_info
Retrieve detailed file information from a specific TeamSpeak channel by providing the channel ID and file path. Optionally include a channel password for restricted access.
Instructions
Get detailed information about a specific file in a channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | Channel ID containing the file | |
channel_password | No | Channel password if required (optional) | |
file_path | Yes | Full path to the file |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"channel_id": {
"description": "Channel ID containing the file",
"type": "integer"
},
"channel_password": {
"description": "Channel password if required (optional)",
"type": "string"
},
"file_path": {
"description": "Full path to the file",
"type": "string"
}
},
"required": [
"channel_id",
"file_path"
],
"type": "object"
}