> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User

Use this API to view a user's information on a Zoom account. For user-level apps, pass [the `me` value](https://marketplace.zoom.us/docs/api-reference/using-zoom-apis#mekeyword) instead of the `userId` parameter.

**Note:** Users who have not activated their account will have a `pending` status. These users' `created_at` timestamp will also display the time at which the API call was made, **not** the account's creation date.

**Scopes:** `user:read:admin`, `user:read`, `user_info:read`

* **Note:** The `user_info:read` scope is only available when you pass the `me` value for the `$userId` value.

**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`.

<Note>
  External Documentation

  To learn more, visit the [Zoom documentation](https://developers.zoom.us/docs/api/users/#tag/users/get/users/\{userId}).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter           | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
  | ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Encrypted Email     | Whether the email address passed for the `userId` value is an encrypted email address: <br /><br /> \* `true` — The email address is encrypted. <br /> \* `false` — The email address is not encrypted. <br /><br /> If you do not query this parameter, this value defaults to null (`false`).                                                                                                                                                                 |
  | Login Type          | The user's login method: <br />\* `0` — Facebook OAuth <br />\* `1` — Google OAuth <br />\* `24` — Apple OAuth <br />\* `27` — Microsoft OAuth <br />\* `97` — Mobile device <br />\* `98` — RingCentral OAuth <br />\* `99` — API user <br />\* `100` — Zoom Work email <br />\* `101` — Single Sign-On (SSO) <br /><br />The following login methods are only available in China: <br />\* `11` — Phone number <br />\* `21` — WeChat <br />\* `23` — Alipay. |
  | Search By Unique ID | Whether the queried `userId` value is an employee unique ID: <br />\* `true` — The queried ID is an employee's unique ID. <br />\* `false` — The queried ID is not an employee's unique ID. <br /><br />This value defaults to `false` (null).                                                                                                                                                                                                                  |
  | User ID             | The user ID or email address of the user. For user-level apps, pass the `me` value.                                                                                                                                                                                                                                                                                                                                                                             |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "<string>",
	"first_name": "<string>",
	"last_name": "<string>",
	"display_name": "<string>",
	"email": "<string>",
	"type": 2,
	"role_name": "<string>",
	"pmi": 6401023003,
	"use_pmi": false,
	"personal_meeting_url": "<string>",
	"timezone": "<string>",
	"verified": 1,
	"dept": "<string>",
	"created_at": "2020-04-01T16:47:52Z",
	"last_login_time": "2020-04-01T16:47:52Z",
	"last_client_version": "<string>",
	"pic_url": "<string>",
	"cms_user_id": "<string>",
	"jid": "<string>",
	"group_ids": [],
	"im_group_ids": [],
	"account_id": "<string>",
	"language": "<string>",
	"phone_country": "<string>",
	"phone_number": "<string>",
	"status": "<string>",
	"job_title": "<string>",
	"cost_center": "<string>",
	"location": "<string>",
	"login_types": [
		0
	],
	"role_id": "<string>",
	"cluster": "<string>",
	"user_created_at": "2020-04-01T16:47:52Z"
}
```

## Workflow Library Example

[Setting Up an Incident Process](https://library.blinkops.com/workflows/setting-up-an-incident-process)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/setting-up-an-incident-process/canvas" />
</div>
