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

# appCreate Mutation

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
appCreate(
  input: AppInput!
): AppCreate
```

Details

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

<a id="arguments"></a>

### Arguments

<a id="input"></a>

#### [`input`](#input) ● [`AppInput!`](/api-reference/apps/inputs/app-input.md)

Fields required to create a new app.

<a id="type"></a>

### Type

<a id="appcreate"></a>

#### [`AppCreate`](/api-reference/apps/objects/app-create.md)

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.
