> ## 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.

# Find member by email

> Find an active Slack workspace member by email address.

`slack.findMemberByEmail` resolves an active workspace member from their registered email address.

## Example

```ts automations/find-member-by-email.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { slack } from "automate.ax/slack"

export default automation("Find member by email", () => {
  onDashboardRun({ title: "Find member by email" })

  slack.findMemberByEmail({ email: "ada@example.com" })
})
```

## Inputs

| Input   | Type     | Required | Description                         |
| ------- | -------- | -------- | ----------------------------------- |
| `email` | `string` | Yes      | Registered workspace email address. |

## Output

Returns a normalized Slack member and profile. Requires `users:read` together with the sensitive `users:read.email` scope and does not return deactivated users.
