> For the complete documentation index, see [llms.txt](https://iammeosjin.gitbook.io/authefy/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://iammeosjin.gitbook.io/authefy/authefy-node-client/read-user.md).

# Read User

```typescript
import authefyNodeClient from './path/to/@authefy/node-client';

await authefyNodeClient.user.read('ca10416e530f5f7bb7dfb02940143618')
// returns: User Object
```

User Object:&#x20;

```typescript
type User {
    id: string;
    externalId?: string;
    username: string;
    groups: string[];
    isEmailVerified: boolean;
    isVerified: boolean;
    details: Record<string, any>;
}
```
