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

# customerTypeReorderAttributes Mutation

Reorder the attributes of a customer type.

Added in Saleor 3.23.

Requires the MANAGE\_CUSTOMER\_TYPES\_AND\_ATTRIBUTES permission.

Triggers the following webhook events:

-   CUSTOMER\_TYPE\_UPDATED (async): A customer type was updated.

```graphql
customerTypeReorderAttributes(
  customerTypeId: ID!
  moves: [ReorderInput!]!
): CustomerTypeReorderAttributes
```

Details

```graphql
type CustomerTypeReorderAttributes {
  customerType: CustomerType
  errors: [CustomerTypeReorderAttributesError!]!
}
```

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

### Arguments

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

#### [`customerTypeId`](#customer-type-id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

ID of a customer type.

<a id="moves"></a>

#### [`moves`](#moves) ● [`[ReorderInput!]!`](/api-reference/miscellaneous/inputs/reorder-input.md)

The list of attribute reordering operations.

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

### Type

<a id="customertypereorderattributes"></a>

#### [`CustomerTypeReorderAttributes`](/api-reference/users/objects/customer-type-reorder-attributes.md)

Reorder the attributes of a customer type.

Added in Saleor 3.23.

Requires the MANAGE\_CUSTOMER\_TYPES\_AND\_ATTRIBUTES permission.

Triggers the following webhook events:

-   CUSTOMER\_TYPE\_UPDATED (async): A customer type was updated.
