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

# checkoutCreate Mutation

Create a new checkout.

`skipValidation` field requires HANDLE\_CHECKOUTS and AUTHENTICATED\_APP permissions.

Triggers the following webhook events:

-   CHECKOUT\_CREATED (async): A checkout was created.

```graphql
checkoutCreate(
  input: CheckoutCreateInput!
): CheckoutCreate
```

Details

```graphql
type CheckoutCreate {
  created: Boolean @deprecated
  checkoutErrors: [CheckoutError!]! @deprecated
  errors: [CheckoutError!]!
  checkout: Checkout
}
```

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

### Arguments

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

#### [`input`](#input) ● [`CheckoutCreateInput!`](/api-reference/checkout/inputs/checkout-create-input.md)

Fields required to create checkout.

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

### Type

<a id="checkoutcreate"></a>

#### [`CheckoutCreate`](/api-reference/checkout/objects/checkout-create.md)

Create a new checkout.

`skipValidation` field requires HANDLE\_CHECKOUTS and AUTHENTICATED\_APP permissions.

Triggers the following webhook events:

-   CHECKOUT\_CREATED (async): A checkout was created.
