Slack
SLACKBOT_LIST_SCHEDULED_MESSAGES_IN_A_CHANNEL
DEPRECATED: Retrieves a list of pending (not yet delivered) messages scheduled in a specific Slack channel. Use `list_scheduled_messages` instead.
Remote slackbot
Other tools also called SLACKBOT_LIST_SCHEDULED_MESSAGES_IN_A_CHANNEL?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"title": "Limit",
"examples": [
"100",
"50"
],
"description": "Maximum messages per page (1-1000). Defaults to 100."
},
"cursor": {
"type": "string",
"title": "Cursor",
"examples": [
"dXNlcjpVMDYxREk0STM=",
"bmV4dF9wYWdlX2N1cnNvcg=="
],
"description": "Pagination cursor from `response_metadata.next_cursor` of a previous response. Omit for the first page."
},
"latest": {
"type": "string",
"title": "Latest",
"default": null,
"examples": [
"1678886400.000000",
"1678972800.000000"
],
"nullable": true,
"description": "Latest UNIX timestamp (exclusive) for messages. Defaults to the current time if omitted."
},
"oldest": {
"type": "string",
"title": "Oldest",
"default": null,
"examples": [
"1678800000.000000",
"1678880000.000000"
],
"nullable": true,
"description": "Earliest UNIX timestamp (inclusive) for messages. Defaults to 0 if omitted."
},
"channel": {
"type": "string",
"title": "Channel",
"examples": [
"C1234567890",
"general"
],
"description": "ID or name of the channel (public, private, or DM) to list messages for. If omitted, lists for all accessible channels in the workspace."
}
}
}