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

# Create User

Creates a new user in your Okta organization with or without credentials.

<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/createUser).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter    | Description                                                     |
  | ------------ | --------------------------------------------------------------- |
  | Activate     | Executes activation lifecycle operation when creating the user. |
  | Email        | Primary email address of user.                                  |
  | First Name   | Given name of the user.                                         |
  | Last Name    | Family name of the user.                                        |
  | Login Email  | Unique email identifier for the user.                           |
  | Mobile Phone | Mobile phone number of the user.                                |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                                            |
  | --------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
  | Department      | Name of the user's department.                                                                                                         |
  | Display Name    | Name of the user, suitable for display to end users.                                                                                   |
  | Division        | Name of the user's division.                                                                                                           |
  | Employee Number | Organization or company assigned unique identifier for the user.                                                                       |
  | Manager ID      | ID of the user's manager.                                                                                                              |
  | Next Login      | With activate=true, set nextLogin to changePassword to have the password be EXPIRED, so user must change it the next time they log in. |
  | Organization    | Name of the user's organization.                                                                                                       |
  | Password        | The password for the user (or one time password if nextLogin is set to changePassword).                                                |
  | Title           | User's title, such as "Vice President."                                                                                                |
  | User Type       | Used to describe the organization to user relationship such as "Employee" or "Contractor."                                             |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "00ub0oNGTSWTBKOLGLNR",
	"status": "STAGED",
	"created": "2013-07-02T21:36:25.344Z",
	"activated": null,
	"statusChanged": null,
	"lastLogin": null,
	"lastUpdated": "2013-07-02T21:36:25.344Z",
	"passwordChanged": null,
	"profile": {
		"firstName": "Isaac",
		"lastName": "Brock",
		"email": "isaac.brock@example.com",
		"login": "isaac.brock@example.com",
		"mobilePhone": "555-415-1337"
	},
	"credentials": {
		"provider": {
			"type": "OKTA",
			"name": "OKTA"
		}
	},
	"_links": {
		"activate": {
			"href": "https://{yourOktaDomain}/api/v1/users/00ub0oNGTSWTBKOLGLNR/lifecycle/activate"
		},
		"self": {
			"href": "https://{yourOktaDomain}/api/v1/users/00ub0oNGTSWTBKOLGLNR"
		}
	}
}
```

## Workflow Library Example

[Create Temporary User with Okta](https://library.blinkops.com/workflows/create-temporary-user-with-okta)

<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/create-temporary-user-with-okta/canvas" />
</div>
