Slack
SLACKBOT_CREATE_A_REMINDER
Creates a Slack reminder with specified text and time; time accepts Unix timestamps, seconds from now, or natural language (e.g., 'in 15 minutes', 'every Thursday at 2pm').
Remote slackbot
Other tools also called SLACKBOT_CREATE_A_REMINDER?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"text": {
"type": "string",
"title": "Text",
"examples": [
"Submit weekly report",
"Follow up with Jane Doe"
],
"description": "The textual content of the reminder message."
},
"time": {
"type": "string",
"title": "Time",
"examples": [
"1735689600",
"900",
"in 20 minutes",
"every Monday at 10am"
],
"description": "Specifies when the reminder should occur. This can be a Unix timestamp (integer, up to five years from now), the number of seconds until the reminder (integer, if within 24 hours, e.g., '300' for 5 minutes), or a natural language description (string, e.g., \"in 15 minutes,\" or \"every Thursday at 2pm\", \"daily\"). "
},
"user": {
"type": "string",
"title": "User",
"examples": [
"U012AB3CD4E",
"W1234567890"
],
"description": "The ID of the user who will receive the reminder (e.g., 'U012AB3CD4E'). If not specified, the reminder will be sent to the user who created it. "
}
}
}