
Slack DeleteScheduled
CertifiedCancel a scheduled Slack message
Slack DeleteScheduled
Certified
Cancel a scheduled Slack message
Removes a pending scheduled message before it posts. Requires chat: write; provide the channel and scheduled message ID.
yaml
type: io.kestra.plugin.slack.app.chats.DeleteScheduledExamples
Delete a scheduled message
yaml
id: slack_delete_scheduled
namespace: company.team
tasks:
- id: delete_scheduled
type: io.kestra.plugin.slack.app.chats.DeleteScheduled
token: "{{ secret('SLACK_TOKEN') }}"
channel: "#general"
scheduledMessageId: "Q1234567890"
Schedule and cancel a message
yaml
id: slack_schedule_and_cancel
namespace: company.team
tasks:
- id: schedule_message
type: io.kestra.plugin.slack.app.chats.Schedule
token: "{{ secret('SLACK_TOKEN') }}"
channel: "#general"
messageText: "This will be cancelled"
postAt: "{{ now() | dateAdd(1, 'HOURS') }}"
- id: cancel_message
type: io.kestra.plugin.slack.app.chats.DeleteScheduled
token: "{{ secret('SLACK_TOKEN') }}"
channel: "#general"
scheduledMessageId: "{{ outputs.schedule_message.messageId }}"
Properties
channel *Requiredstring
Channel of scheduled message
Channel ID or name that holds the scheduled post.
scheduledMessageId *Requiredstring
Scheduled message ID
Value returned by Schedule; uniquely identifies the pending post.
token *Requiredstring
Slack token
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.