import { WebClient } from "https://deno.land/x/slack_web_api@1.0.3/mod.ts";
type Slack = {
token: string;
};
export async function main(email: string, slack: Slack) {
const web = new WebClient(slack.token);
let response = await web.users.lookupByEmail({
email: email,
});
return { response: response };
}
Submitted by admin 460 days ago
import { WebClient } from "https://deno.land/x/slack_web_api@1.0.3/mod.ts";
type Slack = {
token: string;
};
export async function main(
email: string,
slack: Slack,
) {
const web = new WebClient(slack.token);
let response = await web.users.lookupByEmail({
email: email,
});
return { "response": response };
}
Submitted by admin 463 days ago
import { WebClient } from "https://deno.land/x/slack_web_api@1.0.3/mod.ts";
import type { Resource } from "https://deno.land/x/windmill@v1.85.0/mod.ts";
export async function main(
email: string,
slack: Resource<"slack">,
) {
const web = new WebClient(slack.token);
let response = await web.users.lookupByEmail({
email: email,
});
return { "response": response };
}
Submitted by adam186 591 days ago
import { WebClient } from "https://deno.land/x/slack_web_api@1.0.3/mod.ts";
import type { Resource } from "https://deno.land/x/windmill@v1.70.1/mod.ts";
export async function main(
email: string,
slack: Resource<"slack">,
) {
const web = new WebClient(slack.token);
let response = await web.users.lookupByEmail({
email: email,
});
return { "response": response };
}
Submitted by adam186 626 days ago
import { WebClient } from "https://deno.land/x/slack_web_api@1.0.3/mod.ts";
import type { Resource } from "https://deno.land/x/windmill@v1.42.1/mod.ts";
export async function main(
email: string,
slack: Resource<"slack">,
) {
const web = new WebClient(slack.token);
let response = await web.users.lookupByEmail({
email: email,
});
return { "response": response };
}
Submitted by mrl5 746 days ago
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">,
email: string, // An email address belonging to a user in the workspace
) {
const web = new WebClient(slack_auth);
let response = await web.users.lookupByEmail({
email: email,
});
return { "response": response };
}
Submitted by rossmccrann 876 days ago