Edits history of script submission #21 for ' Find User by Email (slack)'

  • deno
    import { WebClient } from "https://deno.land/x/[email protected]/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 hugo697 384 days ago

  • deno
    import { WebClient } from "https://deno.land/x/[email protected]/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 hugo697 399 days ago

  • deno
    import { WebClient } from "https://deno.land/x/[email protected]/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 1031 days ago

  • deno
    import { WebClient } from "https://deno.land/x/[email protected]/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 1034 days ago

  • deno
    import { WebClient } from "https://deno.land/x/[email protected]/mod.ts";
    import type { Resource } from "https://deno.land/x/[email protected]/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 1163 days ago

  • deno
    import { WebClient } from "https://deno.land/x/[email protected]/mod.ts";
    import type { Resource } from "https://deno.land/x/[email protected]/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 1198 days ago

  • deno
    import { WebClient } from "https://deno.land/x/[email protected]/mod.ts";
    import type { Resource } from "https://deno.land/x/[email protected]/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 1317 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/index.ts";
    import { WebClient } from "https://deno.land/x/[email protected]/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 1448 days ago