Adds catalog line items and/or custom line items to a checkout.
The addToCheckout()
function returns a Promise that resolves to the updated checkout when the specified items have been added.
Note: When adding catalog items, options.lineItems.catalogReference
is required.
Checkout ID.
Items to be added to checkout.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Creates a checkout.
The createCheckout()
function returns a Promise that resolves to the new checkout when it's created.
Notes:
options.lineItems
array.options.channelType
is required._id
for options.lineItems
is added, make sure that each _id
is unique.options.checkoutInfo.customFields
are added, then options.checkoutInfo.customFields.value
is required.
Checkout creation options.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Creates an order from a specified checkout.
The createOrder()
function returns a Promise that resolves to the new order's ID and paymentGatewayOrderID
when the order is created.
Pass the paymentGatewayOrderId
as the paymentId
param to the startPayment()
function to allow a customer to pay for their order.
Note: The following requirements must be met for an order to be created from a checkout.
checkout._id
to Get Checkout and take a look at the calculationErrors
field.availability.status
of "AVAILABLE"
or "PARTIALLY_AVAILABLE"
.priceSummary.total
is greater than 0, the billingInfo.address
field must be provided.shippingInfo.shippingDestination.address
and shippingInfo.selectedCarrierServiceOption
fields must be provided.shippingInfo.selectedCarrierServiceOption.logistics.pickupDetails
field must be provided.
Checkout ID.
Further order creation options.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Retrieves a checkout.
The getCheckout()
function returns a Promise that resolves when the specified checkout is retrieved.
Checkout ID.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Retrieves the checkout page URL of a specified checkout.
By default, a checkoutUrl
generates for a checkout and directs to a standard Wix checkout page.
However, if overrideCheckoutUrl
has a value, it will replace and set the value of checkoutUrl
.
Checkout ID.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Marks a checkout as completed - checkout.complete
boolean is set to true
.
The markCheckoutAsCompleted()
function returns a Promise that resolves when the specified checkout is marked as completed.
Checkout ID.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Removes the coupon from a specified checkout.
The removeCoupon()
function returns a Promise that resolves to the updated checkout when the coupon is removed from the specified checkout.
Note: A checkout can only hold 1 coupon.
ID of the checkout to remove the coupon from.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Removes the gift card from a specified checkout.
The removeGiftCard()
function returns a Promise that resolves to the updated checkout when the gift card is removed from the specified checkout.
Note: A checkout can only hold 1 gift card.
ID of the checkout to remove the gift card from.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Removes line items from the specified checkout.
The removeLineItems()
function returns a Promise that resolves to the updated checkout when the line items are removed from the specified checkout.
ID of the checkout to remove line items from.
IDs of the line items to be removed.
To find the IDs of the checkout line items you'd like to remove, pass the checkout._id
to getCheckout() and look for the IDs under lineItems
and/or customLineItems
.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Removes the overrideCheckoutUrl
from a specified checkout.
When overrideCheckoutUrl
is removed, the checkoutUrl
will be set to the default, standard
Wix checkout page URL.
ID of the checkout to remove the override checkout url from.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Updates a checkout.
The updateCheckout()
function returns a Promise that resolves to the updated checkout when the specified properties are updated.
Notes:
checkout.buyerInfo.email
may not be removed once it is set.
Checkout ID.
Checkout update options.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Updates the quantity of one or more line items in a checkout.
This endpoint is only for updating the quantity of line items. To entirely remove a line item from
the checkout, use removeLineItems()
.
To add a new line item to the checkout, use addToCheckout()
.
This endpoint checks the amount of stock remaining for this line item. If the specified quantity
is greater than the remaining stock, then the quantity
returned in the response is the total amount
of remaining stock.
Checkout ID.
Line item info to update.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Triggered when an order created from this checkout is successfully paid for or when a checkout is marked as completed.
handler(event: CheckoutCompletedEnvelope): void | Promise<void>
Triggered when a checkout is created.
handler(event: CheckoutCreatedEnvelope): void | Promise<void>
Triggered when a checkout is updated.
handler(event: CheckoutUpdatedEnvelope): void | Promise<void>