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

# CustomerTypeCreateInput Input Type

No description

```graphql
input CustomerTypeCreateInput {
  name: String
  slug: String
  isDefault: Boolean
}
```

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

### Fields

<a id="name"></a>

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

Name of the customer type.

<a id="slug"></a>

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

Slug of the customer type. If not provided, it will be generated from the name.

<a id="is-default"></a>

#### [`isDefault`](#is-default) ● [`Boolean`](/api-reference/miscellaneous/scalars/boolean.md)

Determines if the customer type should become the default one, assigned to every newly created user. Passing `true` clears the flag on the current default customer type - exactly one default customer type always exists.

<a id="member-of"></a>

### Member Of

[`customerTypeCreate`](/api-reference/users/mutations/customer-type-create.md) mutation
