> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/users/llms.txt)
> Source: https://docs.saleor.io/api-reference/users/objects/staff-create

# StaffCreate Object

Creates a new staff user. Apps are not allowed to perform this mutation.

Requires the MANAGE\_STAFF permission.

Triggers the following webhook events:

-   STAFF\_CREATED (async): A new staff account was created.
-   NOTIFY\_USER (async): A notification for setting the password.
-   STAFF\_SET\_PASSWORD\_REQUESTED (async): Setting a new password for the staff account is requested.

```graphql
type StaffCreate {
  staffErrors: [StaffError!]! @deprecated
  errors: [StaffError!]!
  user: User
}
```

<a id="fields"></a>

### Fields

<a id="errors"></a>

#### [`errors`](#errors) ● [`[StaffError!]!`](/api-reference/users/objects/staff-error.md)

<a id="user"></a>

#### [`user`](#user) ● [`User`](/api-reference/users/objects/user.md)

Show deprecatedHide deprecated

<a id="staff-errors"></a>

#### [`staffErrors`](#staff-errors) ● [`[StaffError!]!`](/api-reference/users/objects/staff-error.md)

DEPRECATED

Use `errors` field instead.

<a id="returned-by"></a>

### Returned By

[`staffCreate`](/api-reference/users/mutations/staff-create.md) mutation
