Slack
Send Slack notifications.
Message
Send Slack notifications to your configured Slack integration.
typescriptCopied1import airplane from "airplane";23export default airplane.task(4{5slug: "send_slack_notifs",6},7async (params) => {8await airplane.slack.message("my-channel", "Hello world");9}10);
API
javascriptCopied1import airplane from "airplane";23export default airplane.task(4{5slug: "send_slack_notifs",6},7async (params) => {8await airplane.slack.message("#my-channel", "Hello world");9}10);
API
pythonCopied1import airplane23@airplane.task()4def send_slack():5airplane.slack.message("#my-channel", "Hello world")
API