Skip to main content
Version: 3.x

CheckoutCreateInput

No description

input CheckoutCreateInput {
channel: String
lines: [CheckoutLineInput!]!
email: String
shippingAddress: AddressInput
billingAddress: AddressInput
languageCode: LanguageCodeEnum
validationRules: CheckoutValidationRules
}

Fields

CheckoutCreateInput.channel ● String scalar

Slug of a channel in which to create a checkout.

CheckoutCreateInput.lines ● [CheckoutLineInput!]! non-null input

A list of checkout lines, each containing information about an item in the checkout.

CheckoutCreateInput.email ● String scalar

The customer's email address.

CheckoutCreateInput.shippingAddress ● AddressInput input

The mailing address to where the checkout will be shipped. Note: the address will be ignored if the checkout doesn't contain shippable items.

CheckoutCreateInput.billingAddress ● AddressInput input

Billing address of the customer.

CheckoutCreateInput.languageCode ● LanguageCodeEnum enum

Checkout language code.

CheckoutCreateInput.validationRules ● CheckoutValidationRules input

The checkout validation rules that can be changed.

Added in Saleor 3.5

Member of

checkoutCreate mutation


Was this page helpful?