Slack
SLACKBOT_RETRIEVE_DETAILED_INFORMATION_ABOUT_A_FILE
Retrieves detailed metadata and paginated comments for a specific Slack file ID; does not download file content.
Remote slackbot
Other tools also called SLACKBOT_RETRIEVE_DETAILED_INFORMATION_ABOUT_A_FILE?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"file": {
"type": "string",
"title": "File",
"default": null,
"examples": [
"F123ABCDEF0"
],
"nullable": true,
"description": "ID of the file to retrieve information for. This is a required field."
},
"page": {
"type": "string",
"title": "Page",
"default": null,
"examples": [
"1",
"3"
],
"nullable": true,
"description": "Page number of comment results to retrieve. Expects a string representing an integer (e.g., '2'). Used for comment pagination. Slack's default is 1 if not provided. `cursor`-based pagination is generally preferred."
},
"count": {
"type": "string",
"title": "Count",
"default": null,
"examples": [
"20",
"100"
],
"nullable": true,
"description": "Number of comments to retrieve per page. Expects a string representing an integer (e.g., '20'). Used for comment pagination. Slack's default is 100 if not provided."
},
"limit": {
"type": "integer",
"title": "Limit",
"default": null,
"examples": [
"10",
"50"
],
"nullable": true,
"description": "The maximum number of comments to retrieve. This is an upper limit, not a guarantee of how many will be returned. Primarily used for comment pagination."
},
"cursor": {
"type": "string",
"title": "Cursor",
"default": null,
"examples": [
"dXNlcjpVMDYxRkExNDIK",
"bmV4dF90czoxNTEyMDg2NDE1MDAwOTc2"
],
"nullable": true,
"description": "Pagination cursor for retrieving comments. Set to `next_cursor` from a previous response's `response_metadata` to fetch the next page of comments. Essential for navigating through large sets of comments. See [pagination](https://slack.dev) for more details."
}
}
}