Remove
Remove a Slack reaction
Remove
Remove a Slack reaction
yaml
type: "io.kestra.plugin.slack.app.reactions.Remove"Examples
yaml
id: slack_remove_reaction
namespace: company.team
tasks:
- id: remove_reaction
type: io.kestra.plugin.slack.app.reactions.Remove
token: "{{ secret('SLACK_TOKEN') }}"
channel: "#general"
name: "thumbsup"
timestamp: "{{ outputs.previous_task.timestamp }}"
yaml
id: slack_reaction_workflow
namespace: company.team
tasks:
- id: add_reaction
type: io.kestra.plugin.slack.app.reactions.Add
token: "{{ secret('SLACK_TOKEN') }}"
channel: "#general"
name: "hourglass"
timestamp: "{{ inputs.message_timestamp }}"
- id: remove_reaction
type: io.kestra.plugin.slack.app.reactions.Remove
token: "{{ secret('SLACK_TOKEN') }}"
channel: "#general"
name: "hourglass"
timestamp: "{{ inputs.message_timestamp }}"