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

Create a new user account for a given organization. Only an admin can create a new user account.
The following permissions are required to run this action:

* `spark-admin:people_write`
* `spark-admin:people_read`

<Note>
  External Documentation

  To learn more, visit the [Cisco Webex documentation](https://developer.webex.com/docs/api/v1/people/create-a-person).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter     | Description                                    |
  | ------------- | ---------------------------------------------- |
  | Department    | The business department the user belongs to.   |
  | Display Name  | The full name of the user to be created.       |
  | Email Address | The email addresses of the user to be created. |
  | First Name    | The first name of the user to be created.      |
  | Last Name     | The last name of the user to be created.       |
  | Manager ID    | The user's manager ID.                         |
  | Title         | The title of the user to be created.           |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                          |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Address   | The new user's address.                                                                                                                                                              |
  | Licenses  | A comma separated array of the licenses allocated to the user. For the available values, please visit [Cisco Webex](https://developer.webex.com/docs/api/v1/people/create-a-person). |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9mNWIzNjE4Ny1jOGRkLTQ3MjctOGIyZi1mOWM0NDdmMjkwNDY",
	"emails": [
		"john.andersen@example.com"
	],
	"phoneNumbers": [
		{
			"type": "work",
			"value": "+1 408 526 7209"
		}
	],
	"extension": "133",
	"locationId": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OLzYzNzE1",
	"displayName": "John Andersen",
	"nickName": "John",
	"firstName": "John",
	"lastName": "Andersen",
	"avatar": "https://1efa7a94ed21783e352-c62266528714497a17239ececf39e9e2.ssl.cf1.rackcdn.com/V1~54c844c89e678e5a7b16a306bc2897b9~wx29yGtlTpilEFlYzqPKag==~1600",
	"orgId": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi85NmFiYzJhYS0zZGNjLTExZTUtYTE1Mi1mZTM0ODE5Y2RjOWE",
	"roles": [
		"Y2lzY29zcGFyazovL3VzL1JPTEUvOTZhYmMyYWEtM2RjYy0xMWU1LWExNTItZmUzNDgxOWNkYzlh",
		"Y2lzY29zcGFyazovL3VzL1JPTEUvOTZhYmMyYWEtM2RjYy0xMWU1LWIyNjMtMGY0NTkyYWRlZmFi"
	],
	"licenses": [
		"Y2lzY29zcGFyazovL3VzL0xJQ0VOU0UvOTZhYmMyYWEtM2RjYy0xMWU1LWExNTItZmUzNDgxOWNkYzlh",
		"Y2lzY29zcGFyazovL3VzL0xJQ0VOU0UvOTZhYmMyYWEtM2RjYy0xMWU1LWIyNjMtMGY0NTkyYWRlZmFi"
	],
	"department": "Sales",
	"manager": "John Duarte",
	"managerId": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS80ZGEzYTI0OC05YjBhLTQxMDgtODU0NC1iNTQwMzEyZTU2M2E",
	"title": "GM",
	"addresses": [
		{
			"type": "work",
			"country": "US",
			"locality": "Milpitas",
			"region": "California",
			"streetAddress": "1099 Bird Ave.",
			"postalCode": "99212"
		}
	],
	"created": "2015-10-18T14:26:16.000Z",
	"lastModified": "2015-10-18T14:26:16.000Z",
	"timezone": "America/Denver",
	"lastActivity": "2015-10-18T14:26:16.028Z",
	"siteUrls": [
		"mysite.webex.com#attendee"
	],
	"sipAddresses": [
		{}
	],
	"xmppFederationJid": "user@example.com",
	"status": "active",
	"invitePending": "false",
	"loginEnabled": "true",
	"type": "person"
}
```

## Workflow Library Example

[Create Person with Cisco Webex and Send Results Via Email](https://library.blinkops.com/workflows/create-person-with-cisco-webex-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-person-with-cisco-webex-and-send-results-via-email/canvas" />
</div>
