Slack Unarchive

Slack Unarchive

Certified

Unarchive a Slack channel

Restores an archived channel and adds the caller to it. Requires a user token (xoxp-); Slack does not allow bot tokens for this method. See Slack conversations.unarchive documentation for details.

yaml
type: io.kestra.plugin.slack.app.conversations.Unarchive

Unarchive a channel

yaml
id: slack_unarchive_channel
namespace: company.team

tasks:
  - id: unarchive_channel
    type: io.kestra.plugin.slack.app.conversations.Unarchive
    token: "{{ secret('SLACK_TOKEN') }}"
    channel: "C1234567890"
Properties

Channel ID

Channel to unarchive; must be provided as a Slack channel ID (e.g., C123...). To get the channel ID, right click on the channel name in Slack and select 'Copy Link'. The ID is the last part of the URL.

Slack token

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