getUser()
Retrieves a single user by their ID, if the ID is valid. Throws an error otherwise.
const userId = 'my-user-id'; const user = await clerkClient.users.getUser(userId);
Required parameters
Name | Type | Description |
---|---|---|
userId | string | The ID of the user to retrieve. |