Skip to main content

CheckoutCreateInput

Input for creating a checkout.

input CheckoutCreateInput {
lines: [CheckoutLineInput!]!
email: String
shippingAddress: AddressInput
billingAddress: AddressInput
currency: MarketplaceConfigurationCurrencyEnum
}

Fields

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.currency ● MarketplaceConfigurationCurrencyEnum enum

Currency code for this checkout (e.g., 'USD').

Member Of

checkoutCreate mutation

Was this page helpful?