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

# AppCreate Object

Creates a new app.

Requires the following permissions: AUTHENTICATED\_STAFF\_USER MANAGE\_APPS

Triggers the following webhook events:

-   APP\_INSTALLED (async): An app was installed.

```graphql
type AppCreate {
  authToken: String
  appErrors: [AppError!]! @deprecated
  errors: [AppError!]!
  app: App
}
```

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

### Fields

<a id="auth-token"></a>

#### [`authToken`](#auth-token) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

The newly created authentication token.

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

#### [`errors`](#errors) ● [`[AppError!]!`](/api-reference/apps/objects/app-error.md)

<a id="app"></a>

#### [`app`](#app) ● [`App`](/api-reference/apps/objects/app.md)

Show deprecatedHide deprecated

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

#### [`appErrors`](#app-errors) ● [`[AppError!]!`](/api-reference/apps/objects/app-error.md)

DEPRECATED

Use `errors` field instead.

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

### Returned By

[`appCreate`](/api-reference/apps/mutations/app-create.md) mutation
