
Slack Delete
CertifiedDelete a Slack channel message
Slack Delete
Certified
Delete a Slack channel message
Permanently removes a message by channel and timestamp. Requires chat: write; deletion cannot be undone.
yaml
type: io.kestra.plugin.slack.app.chats.DeleteExamples
Delete a message
yaml
id: slack_delete_message
namespace: company.team
tasks:
- id: delete_message
type: io.kestra.plugin.slack.app.chats.Delete
token: "{{ secret('SLACK_TOKEN') }}"
channel: "#general"
timestamp: "{{ outputs.previous_task.timestamp }}"
Post and delete a message
yaml
id: slack_post_and_delete
namespace: company.team
tasks:
- id: post_message
type: io.kestra.plugin.slack.app.chats.Post
token: "{{ secret('SLACK_TOKEN') }}"
channel: "#general"
messageText: "Temporary message"
- id: delete_message
type: io.kestra.plugin.slack.app.chats.Delete
token: "{{ secret('SLACK_TOKEN') }}"
channel: "#general"
timestamp: "{{ outputs.post_message.timestamp }}"
Properties
channel *Requiredstring
Channel containing the message
Channel ID or name where the target message exists.
timestamp *Requiredstring
Message timestamp to delete
Slack ts of the message; must belong to the specified channel.
token *Requiredstring
Slack token
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
timestamp *Requiredstring
Timestamp of deleted message