slack.slack.getuser
Home > @runlightyear/slack > Slack > getUser
Slack.getUser() method
Gets information about a user.
Signature:getUser(props: GetUserProps): Promise<GetUserResponse>;
Parameters
Parameter | Type | Description |
---|---|---|
props | GetUserProps |
Promise<GetUserResponse>
Example
Get user info
import { defineAction } from "@runlightyear/lightyear";
import { Slack } from "@runlightyear/slack";
defineAction({
name: "getUser",
title: "Get User",
apps: ["slack"],
variables: [
{
name: "user",
description: "User to get info on. Example: W1234567890",
},
],
run: async ({ auths, variables }) => {
const slack = new Slack({
auth: auths.slack,
});
const response = await slack.getUser({
user: variables.user!,
});
console.log("Response data: ", response.data);
},
});