> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Get member

> Get one Slack workspace member and their profile.

`getMember` retrieves a Slack user by stable user ID.

## Example

```ts automations/get-slack-member.automation.ts theme={null}
import { automation } from "automate.ax"
import { getMember } from "automate.ax/slack"

export default automation("Get Slack member", () => {
  getMember({ userId: "U01234567", includeLocale: true })
})
```

## Inputs

| Input           | Type                                             | Required | Default         | Description                        |
| --------------- | ------------------------------------------------ | -------- | --------------- | ---------------------------------- |
| `userId`        | `string`                                         | Yes      | —               | Stable Slack user ID.              |
| `includeLocale` | `boolean`                                        | No       | Slack default   | Asks Slack to include locale data. |
| `account`       | `string \| IntegrationAccountReference<"slack">` | No       | Project default | Slack binding.                     |

## Output

Returns `Signal<SlackMember>` with `id`, nested `profile`, and available account
status, role, bot/app, name, workspace, time-zone, and update fields. Profile
email is absent unless the Slack installation already has `users:read.email`.
