> ## 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 detailed information about a user based on their UUID.

The following scopes are required to run this action:

* `identity.user.ids.read`
* `identity.user.core.read`
* `identity.user.coresensitive.read`
* `identity.user.enterprise.read`
* `identity.user.sap.read`

<Note>
  External Documentation

  To learn more, visit the [SAP Concur documentation](https://developer.concur.com/api-reference/profile/v4.identity.html#retrieve-a-users-identity-profile-).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description         |
  | --------- | ------------------- |
  | User ID   | The ID of the user. |
</div>

## Example Output

```json theme={"dark"}
{
	"localeOverrides": {
		"preferenceEndDayViewHour": 20,
		"preferenceFirstDayOfWeek": "Sunday",
		"preferenceDateFormat": "mm/dd/yyyy",
		"preferenceCurrencySymbolLocation": "BeforeAmount",
		"preferenceHourMinuteSeparator": ":",
		"preferenceDistance": "mile",
		"preferenceDefaultCalView": "month",
		"preference24Hour": "H:mm AM/PM",
		"preferenceNumberFormat": "1,000.00",
		"preferenceStartDayViewHour": 8,
		"preferenceNegativeCurrencyFormat": null,
		"preferenceNegativeNumberFormat": null
	},
	"addresses": [],
	"timezone": "America/New_York",
	"meta": {
		"resourceType": "User",
		"created": "2021-11-17T22:44:09.000164Z",
		"lastModified": "2021-11-17T22:48:31.000891Z",
		"version": 4,
		"location": "https://{datacenterURI}/profile/identity/v4/Users/3df11695-e8bb-40ff-8e98-c85913ab2789"
	},
	"displayName": "John Doe",
	"name": {
		"familyName": "Doe",
		"givenName": "John",
		"honorificSuffix": "VI",
		"familyNamePrefix": null
	},
	"phoneNumbers": [],
	"emergencyContacts": null,
	"preferredLanguage": "en-US",
	"title": null,
	"dateOfBirth": null,
	"nickName": null,
	"schemas": [
		"urn:ietf:params:scim:schemas:core:2.0:User",
		"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User",
		"urn:ietf:params:scim:schemas:extension:sap:2.0:User"
	],
	"externalId": "1234_externalId",
	"active": true,
	"id": "3df11695-e8bb-40ff-8e98-c85913ab2789",
	"emails": [
		{
			"verified": false,
			"type": "work",
			"value": "John11_17_1@sap.com",
			"notifications": true
		}
	],
	"userName": "John11_17_1@sap.com",
	"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User": {
		"terminationDate": null,
		"companyId": "aa076ada-80a9-4f57-8e98-9300b1c3171d",
		"manager": null,
		"costCenter": null,
		"startDate": "2021-11-17T00:00:00.000",
		"employeeNumber": "1234_employeeNumber"
	}
}
```

## Workflow Library Example

[Get User with Sap Concur and Send Results Via Email](https://library.blinkops.com/workflows/get-user-with-sap-concur-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-sap-concur-and-send-results-via-email/canvas" />
</div>
