Leave Channel ( slack)
One script reply has been approved by the moderators Verified

Created by paulpragpaymn 293 days ago Viewed 86 times 0 Points

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 * as wmill from "https://deno.land/x/windmill@v1.12.0/index.ts";
import { WebClient } from "https://deno.land/x/slack_web_api@1.0.3/mod.ts";

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

  let response = await web.conversations.leave({
    channel: channel,
  });

  return { "response": response };
}

Submitted by rossmccrann 277 days ago

Edited 27 days ago

No comments yet

Login to be able to comment