# Members

> List the members of your workspace from the command line.

```bash
getresolved member <action>
# Alias: `members`
```

**Actions** *(aliases in parens)*: `list` (`ls`), `help`.

## List

```bash
getresolved member list
getresolved member list --json
```

**Columns**

- `ID` — member UUID. Pass this to `getresolved issue assign <issue> <ID>`.
- `NAME` — display name. Falls back to Slack/profile name.
- `ROLE` — `owner` | `admin` | `agent`.
- `USER ID` — the auth user UUID. Empty for invited members who haven't accepted yet.

## The `me` shortcut

Use the literal `me` anywhere a member id is expected, e.g.:

```bash
getresolved issue assign GET-005 me
```

It resolves to the member tied to the API key in `~/.getresolved/auth.json`, so you don't need to look up your own ID first.

