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

<Note>
  External Documentation

  To learn more, visit the [Zendesk documentation](https://developer.zendesk.com/api-reference/ticketing/users/users/#create-user).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter               | Description                                                                                          |
  | ----------------------- | ---------------------------------------------------------------------------------------------------- |
  | Role                    | The role to assign to the user. **NOTE**: Assigning the role of an agent is only allowed for admins. |
  | Send Confirmation Email | Only check this if you wish to email the user upon creation.                                         |
  | User Email              | User's email.                                                                                        |
  | User Name               | The name of the user to create.                                                                      |
</div>

## Example Output

```json theme={"dark"}
{
	"user": {
		"id": "xxxxxxxxxx",
		"url": "https://xxxxxxxxxx.zendesk.com/api/v2/users/xxxxxxxxxx.json",
		"name": "xxxxxxxxxx",
		"email": "xxxxxxxxxx@gmail.com",
		"created_at": "2025-01-12T12:29:33Z",
		"updated_at": "2025-01-12T12:29:33Z",
		"time_zone": "Asia/Jerusalem",
		"iana_time_zone": "Asia/Jerusalem",
		"phone": null,
		"shared_phone_number": null,
		"photo": null,
		"locale_id": 1,
		"locale": "en-US",
		"organization_id": null,
		"role": "agent",
		"verified": false,
		"last_active": "2025-01-12",
		"external_id": null,
		"tags": [],
		"alias": null,
		"active": true,
		"shared": false,
		"shared_agent": false,
		"last_login_at": null,
		"two_factor_auth_enabled": null,
		"signature": null,
		"details": null,
		"notes": null,
		"role_type": null,
		"custom_role_id": null,
		"moderator": false,
		"ticket_restriction": null,
		"only_private_comments": false,
		"restricted_agent": false,
		"suspended": false,
		"default_group_id": "xxxxxxxxxx",
		"report_csv": false,
		"user_fields": {}
	}
}
```

## Workflow Library Example

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