Send Message to Channel ( slack)
One script reply has been approved by the moderators Verified

Created by admin 241 days ago Viewed 10121 times 0 Points

slack

No comments yet

Login to be able to comment
Points: 0
deno
One script reply has been approved by the moderators
Ap­pro­ved
import { WebClient } from "https://deno.land/x/slack_web_api@1.0.0/mod.ts";
import type { Resource } from "https://deno.land/x/windmill@v1.70.1/mod.ts";

export async function main(
  text: string,
  channel: string,
  slack: Resource<"slack">,
) {
  const web = new WebClient(slack.token);

  await web.chat.postMessage({
    channel,
    text,
  });
}

Submitted by admin 241 days ago

Edited 27 days ago

No comments yet

Login to be able to comment