Delete
Delete a Slack channel message
Delete
Delete a Slack channel message
yaml
type: "io.kestra.plugin.slack.app.chats.Delete"Examples
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 }}"
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 }}"