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

Create a new user.

## Basic Parameters

<div className="integrations-table">
  | Parameter  | Description                  |
  | ---------- | ---------------------------- |
  | First Name | The first name of the user.  |
  | Password   | The user's initial password. |
  | Username   | The user's username.         |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter    | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
  | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Email        | Email address for the user.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
  | Extra Fields | Any additional fields to add to the user.<br /><br />Can be one of:<br /> - permissions: which permissions the user should have<br /> - activated: whether the user's account is activated (true/false)<br /> - manager\_id: the ID of the user's manager<br /> - employee\_num: which number of employee the user is<br /> - company\_id: the ID of the company the user belongs to<br /> - two\_factor\_enrolled: whether the user is enrolled in two-factor auth (true/false)<br /> - two\_factor\_optin: whether the user should have the option to enroll in two-factor auth (true/false)<br /> - department\_id: the ID of the department the user belongs to<br /> - location\_id: the ID of the location the user works in<br /> - remote: whether the user works remotely (true/false)<br /> - groups: ID of the group or groups the user should be associated with. Can be a single ID number of an array like \[1,2,3] |
  | Job Title    | The user's job title.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
  | Last Name    | The user's last name.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
  | Notes        | Any additional notes to attach to the user.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
  | Phone        | The user's phone number.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
</div>

## Example Output

```json theme={"dark"}
{
	"status": "<string>",
	"messages": "<string>",
	"payload": {
		"id": 29,
		"avatar": "<string>",
		"name": "<string>",
		"first_name": "<string>",
		"last_name": "<string>",
		"username": "<string>",
		"remote": false,
		"locale": null,
		"employee_num": null,
		"manager": null,
		"jobtitle": "<string>",
		"vip": false,
		"phone": null,
		"website": null,
		"address": null,
		"city": "<string>",
		"state": null,
		"country": null,
		"zip": null,
		"email": "<string>",
		"department": null,
		"location": null,
		"notes": "<string>",
		"permissions": null,
		"activated": false,
		"autoassign_licenses": false,
		"ldap_import": false,
		"two_factor_enrolled": false,
		"two_factor_optin": false,
		"assets_count": 1,
		"licenses_count": 1,
		"accessories_count": 2,
		"consumables_count": 2,
		"manages_users_count": 1,
		"manages_locations_count": 2,
		"company": null,
		"created_by": {
			"id": 2,
			"name": "<string>"
		},
		"created_at": {
			"datetime": "2025-04-01 22:14:11",
			"formatted": "Tue Apr 01, 2025 10:14PM"
		},
		"updated_at": {
			"datetime": "2025-04-01 22:14:11",
			"formatted": "Tue Apr 01, 2025 10:14PM"
		},
		"start_date": null,
		"end_date": null,
		"last_login": null,
		"deleted_at": null,
		"available_actions": {
			"update": true,
			"delete": true,
			"clone": true,
			"restore": false
		},
		"groups": null
	}
}
```

## Workflow Library Example

[Create User with Snipe It and Send Results Via Email](https://library.blinkops.com/workflows/create-user-with-snipe-it-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/create-user-with-snipe-it-and-send-results-via-email/canvas" />
</div>
