Slack
SLACK_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 slack
Other tools also called SLACK_CREATE_A_REMINDER?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "The textual content of the reminder message.\nExamples:\n \"Submit weekly report\"\n \"Follow up with Jane Doe\""
},
"time": {
"type": "string",
"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\"). \nExamples:\n \"1735689600\"\n \"900\"\n \"in 20 minutes\"\n \"every Monday at 10am\""
},
"user": {
"type": "string",
"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. \nExamples:\n \"U012AB3CD4E\"\n \"W1234567890\""
}
}
}