Slack DeleteScheduled

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.DeleteScheduled

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 of scheduled message

Channel ID or name that holds the scheduled post.

Scheduled message ID

Value returned by Schedule; uniquely identifies the pending post.

Slack token

Reference (ref) of the pluginDefaults to apply to this task.