Remove Remove
Remove Certified

Remove a Slack reaction

yaml
type: "io.kestra.plugin.slack.app.reactions.Remove"
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 }}"
Properties