Slack
SLACK_RETRIEVE_DETAILED_INFORMATION_ABOUT_A_FILE
Retrieves detailed metadata and paginated comments for a specific Slack file ID; does not download file content.
Remote slack
Other tools also called SLACK_RETRIEVE_DETAILED_INFORMATION_ABOUT_A_FILE?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"file": {
"type": [
"string",
"null"
],
"default": null,
"description": "ID of the file to retrieve information for. This is a required field.\nExample: \"F123ABCDEF0\""
},
"page": {
"type": [
"string",
"null"
],
"default": null,
"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.\nExamples:\n \"1\"\n \"3\""
},
"count": {
"type": [
"string",
"null"
],
"default": null,
"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.\nExamples:\n \"20\"\n \"100\""
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"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.\nExamples:\n \"10\"\n \"50\""
},
"cursor": {
"type": [
"string",
"null"
],
"default": null,
"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.\nExamples:\n \"dXNlcjpVMDYxRkExNDIK\"\n \"bmV4dF90czoxNTEyMDg2NDE1MDAwOTc2\""
}
}
}