
Slack Delete
CertifiedDelete a Slack file
Slack Delete
Certified
Delete a Slack file
Permanently removes a file by ID. Requires files: write; deletion cannot be undone.
yaml
type: io.kestra.plugin.slack.app.files.DeleteExamples
Delete a file from Slack
yaml
id: slack_file_delete
namespace: company.team
tasks:
- id: delete_file
type: io.kestra.plugin.slack.app.files.Delete
token: "{{ secret('SLACK_TOKEN') }}"
fileId: "F1234567890"
Delete a file after uploading it
yaml
id: slack_file_upload_and_delete
namespace: company.team
tasks:
- id: upload_file
type: io.kestra.plugin.slack.app.files.Upload
token: "{{ secret('SLACK_TOKEN') }}"
channels: ["#general"]
from: "{{ inputs.file }}"
filename: "document.pdf"
title: "Document"
- id: delete_file
type: io.kestra.plugin.slack.app.files.Delete
token: "{{ secret('SLACK_TOKEN') }}"
fileId: "{{ outputs.upload_file.id }}"
Properties
fileId *Requiredstring
File ID
Slack file ID to delete (e.g., F123...). Use Upload output or Slack API to obtain.
token *Requiredstring
Slack token
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.