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

Fetches a user from your Okta organization.

<Note>
  External Documentation

  To learn more, visit the [Okta documentation](https://developer.okta.com/docs/api/openapi/okta-management/management/tag/User/#tag/User/operation/getUser).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter  | Description               |
  | ---------- | ------------------------- |
  | User Email | The user's email address. |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "00ub0oNGTSWTBKOLGLNR",
	"status": "ACTIVE",
	"created": "2013-06-24T16:39:18.000Z",
	"activated": "2013-06-24T16:39:19.000Z",
	"statusChanged": "2013-06-24T16:39:19.000Z",
	"lastLogin": "2013-06-24T17:39:19.000Z",
	"lastUpdated": "2013-07-02T21:36:25.344Z",
	"passwordChanged": "2013-07-02T21:36:25.344Z",
	"profile": {
		"firstName": "Isaac",
		"lastName": "Brock",
		"email": "isaac.brock@example.com",
		"login": "isaac.brock@example.com",
		"mobilePhone": "555-415-1337"
	},
	"credentials": {
		"password": {},
		"recovery_question": {
			"question": "Who's a major player in the cowboy scene?"
		},
		"provider": {
			"type": "OKTA",
			"name": "OKTA"
		}
	},
	"_links": {
		"resetPassword": {
			"href": "https://{yourOktaDomain}/api/v1/users/00ub0oNGTSWTBKOLGLNR/lifecycle/reset_password"
		},
		"resetFactors": {
			"href": "https://{yourOktaDomain}/api/v1/users/00ub0oNGTSWTBKOLGLNR/lifecycle/reset_factors"
		},
		"expirePassword": {
			"href": "https://{yourOktaDomain}/api/v1/users/00ub0oNGTSWTBKOLGLNR/lifecycle/expire_password"
		},
		"forgotPassword": {
			"href": "https://{yourOktaDomain}/api/v1/users/00ub0oNGTSWTBKOLGLNR/credentials/forgot_password"
		},
		"changeRecoveryQuestion": {
			"href": "https://{yourOktaDomain}/api/v1/users/00ub0oNGTSWTBKOLGLNR/credentials/change_recovery_question"
		},
		"deactivate": {
			"href": "https://{yourOktaDomain}/api/v1/users/00ub0oNGTSWTBKOLGLNR/lifecycle/deactivate"
		},
		"changePassword": {
			"href": "https://{yourOktaDomain}/api/v1/users/00ub0oNGTSWTBKOLGLNR/credentials/change_password"
		}
	}
}
```

## Workflow Library Example

[Okta Enforce Password Reset](https://library.blinkops.com/workflows/okta-enforce-password-reset)

<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/okta-enforce-password-reset/canvas" />
</div>
