> ## 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

Get details about an existing user.

Users are members of a PagerDuty account that have the ability to interact with Incidents and other data on the account.

For more information see the [API Concepts Document](https://developer.pagerduty.com/api-reference/a47605517c19a-api-concepts#users).

<Note>
  External Documentation

  To learn more, visit the [PagerDuty documentation](https://developer.pagerduty.com/api-reference/2395ca1feb25e-get-a-user).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                        |
  | --------- | -------------------------------------------------- |
  | Include   | Array of additional Models to include in response. |
  | User ID   | The ID of the user to get details on.              |
</div>

## Example Output

```json theme={"dark"}
{
	"user": {
		"id": "PXPGF42",
		"type": "user",
		"summary": "Earline Greenholt",
		"self": "https://api.pagerduty.com/users/PXPGF42",
		"html_url": "https://subdomain.pagerduty.com/users/PXPGF42",
		"name": "Earline Greenholt",
		"email": "125.greenholt.earline@graham.name",
		"time_zone": "America/Lima",
		"color": "green",
		"role": "admin",
		"avatar_url": "https://secure.gravatar.com/avatar/a8b714a39626f2444ee05990b078995f.png?d=mm&r=PG",
		"description": "I'm the boss",
		"invitation_sent": false,
		"contact_methods": [
			{
				"id": "PTDVERC",
				"type": "email_contact_method_reference",
				"summary": "Default",
				"self": "https://api.pagerduty.com/users/PXPGF42/contact_methods/PTDVERC"
			}
		],
		"notification_rules": [
			{
				"id": "P8GRWKK",
				"type": "assignment_notification_rule_reference",
				"summary": "Default",
				"self": "https://api.pagerduty.com/users/PXPGF42/notification_rules/P8GRWKK",
				"html_url": null
			}
		],
		"job_title": "Director of Engineering",
		"teams": [
			{
				"id": "PQ9K7I8",
				"type": "team_reference",
				"summary": "Engineering",
				"self": "https://api.pagerduty.com/teams/PQ9K7I8",
				"html_url": "https://subdomain.pagerduty.com/teams/PQ9K7I8"
			}
		]
	}
}
```

## Workflow Library Example

[Get User with Pagerduty and Send Results Via Email](https://library.blinkops.com/workflows/get-user-with-pagerduty-and-send-results-via-email)

<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/get-user-with-pagerduty-and-send-results-via-email/canvas" />
</div>
