# Member

An account member as listed to account members — the user's id/email and their role. Any member with view access can list members; role changes are admin-only.

**Attributes** (`MemberDto`)

- `user` · `object` · read-only — The member's user identity (id and email).
  - `id` · `string` · read-only — The member user's unique identifier.
  - `email` · `string <email>` · read-only — The member user's email address.
- `role` · `"owner" | "admin" | "editor" | "reader"` · required — The member's role within the account.

**Example `MemberDto`**

```json
{
  "user": {
    "id": "usr_01example0000000000000000x",
    "email": "dev@example.com"
  },
  "role": "owner"
}
```
