Checkout sends Messages to provide feedback about events.
onInfo
, onWarn
, or onError
message handlers with the checkoutFlow
or paymentFlow
methods when initializing Checkout.Message structure
payload
field with data about the event.code String | Message code for the event. |
severity String | Severity level of the event. Can be info , warn , or error . |
message String | Human-readable description of the event. |
correlationId String | Unique identifier of the event. |
{
"severity": "error",
"code": "project_deactivated",
"message": "Project {projectKey} is deactivated.",
"payload": {
"project": {
"key": "{projectKey}"
}
},
"correlationId": "spa/commercetools-checkout/1729263187262/565301612087128"
}
{
"severity": "info",
"code": "order_created",
"message": "Order {orderId} created.",
"payload": {
"order": {
"id": "{orderId}"
}
},
"correlationId": "spa/commercetools-checkout/1729263187262/565301612087128"
}
Message types
Application Messages
Application Deactivated
code String | "application_disabled" |
severity String | error |
message String | Application {applicationKey} for {projectKey} is disabled. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the project and application objects with the related key property. |
Cart Messages
Cart Empty
code String | "cart_empty" |
severity String | error |
message String | Cart {cartId} is empty. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the cart object with the id property. |
Cart Emptied During Checkout
code String | "cart_emptied_during_checkout" |
severity String | error |
message String | Cart {cartId} was emptied during checkout. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the cart object with the id property. |
Cart Not Found
code String | "cart_not_found" |
severity String | error |
message String | Cart for {projectKey} and session {sessionId} not found. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the project and session objects with the related key and id properties. |
Cart With Existing Payment
code String | "cart_with_exisiting_payment" |
severity String | error |
message String | Cart with existing approved payment. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the cart object with the id property. |
Add Discount Code Error
Generated when there was an error adding a Discount Code.
code String | "add_discount_code_error" |
severity String | error |
message String | Error adding discount code. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the error object. |
Remove Discount Code Error
code String | "remove_discount_code_error" |
severity String | error |
message String | Error removing discount code. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the error object. |
Discount Not Applicable
code String | "discount_code_not_applicable" |
severity String | info |
message String | Discount code not applicable. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the cartId and discountCode properties. |
Not Applicable Discount Code Removed
paymentFlow
method and Checkout removes a Discount Code from the Cart because it does not apply to the Cart. Checkout removes the Discount Code to avoid an order creation error when converting the Cart to an Order.code String | "not_applicable_discount_code_removed" |
severity String | warn |
message String | Not applicable discount code removed. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the cartId and discountCode properties. |
Unsupported Country
code String | "unsupported_country" |
severity String | error |
message String | Cart {cartId} has unsupported country. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the cart object with the id property, shippingCountry , billingCountry , and the supportedCountries array. |
Shipping Address Missing Error
Generated when the shipping address is missing for the given Cart.
code String | "shipping_address_missing" |
severity String | error |
message String | The shippingAddress field is missing for cart {cartId} . |
correlationId String | Unique identifier of the event. |
payload Object | Contains the cart object with the id property. |
Shipping Address Does Not Match Cart
Generated when the selected Shipping Method does not match the Cart anymore.
code String | "shipping_method_does_not_match_cart" |
severity String | info |
message String | Selected shipping method no longer matches cart. |
correlationId String | Unique identifier of the event. |
Set Shipping Address Error
code String | "set_shipping_address_error" |
severity String | error |
message String | Error setting shipping address. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the errors array of objects, with the related code and message properties. |
Checkout Messages
Checkout Loaded
checkoutFlow
or paymentFlow
method.code String | "checkout_loaded" |
severity String | info |
message String | Checkout loaded. |
correlationId String | Unique identifier of the event. |
Checkout Started
checkoutFlow
or paymentFlow
method and the checkout process starts.code String | "checkout_started" |
severity String | info |
message String | Checkout started. |
correlationId String | Unique identifier of the event. |
Checkout Cancelled
Generated when the customer cancels the checkout process.
code String | "checkout_cancelled" |
severity String | info |
message String | Checkout cancelled. |
correlationId String | Unique identifier of the event. |
Checkout Completed
Generated when the customer completes the checkout process.
code String | "checkout_completed" |
severity String | info |
message String | Checkout for {orderId} completed. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the order object with the id property. |
Configuration Messages
Init Error
Generated when an error occurs during Checkout's initialization.
code String | "init_error" |
severity String | error |
message String | Error during initialization. |
correlationId String | Unique identifier of the event. |
Init Timeout
checkoutFlow
or paymentFlow
method on time.code String | "init_timeout" |
severity String | error |
message String | Timeout error, no init message received. |
correlationId String | Unique identifier of the event. |
Invalid Locale
Generated when the provided locale is invalid.
code String | "invalid_locale" |
severity String | warn |
message String | The provided {locale} is invalid. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the provided locale string, the related locale field (language or currency), and the used fallback one. |
Invalid Mode
code String | "invalid_mode" |
severity String | info |
message String | {mode} mode requires an application with mode type {modeTypeRequested} . Current mode {modeTypeReceived} . |
correlationId String | Unique identifier of the event. |
Expired Session
code String | "expired_session" |
severity String | error |
message String | Session is expired. |
correlationId String | Unique identifier of the event. |
Failed To Refresh Session
code String | "failed_to_refresh_session" |
severity String | error |
message String | Failed to refresh session. |
correlationId String | Unique identifier of the event. |
Bad Input Data
code String | "invalid_fields" |
severity String | error |
message String | Some fields are invalid. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the invalidFields array of objects with the related schema , path , value and message properties. |
No Shipping Methods
code String | "no_shipping_methods" |
severity String | error |
message String | There are no shipping methods matching cart. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the cart object with the id property. |
Deprecated Fields
code String | "deprecated_fields" |
severity String | warn |
message String | Some fields are deprecated. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the deprecatedFields array. |
Updated Fields
Generated when some fields provided in the Checkout initialization request are invalid and have been updated to match our schema. An array of updates will be provided with a sequence of edits used to transform an invalid value into a valid one.
code String | "updated_fields" |
severity String | warn |
message String | Some fields are invalid and have been updated. |
correlationId String | Unique identifier of the event. |
payload Object | Contains two arrays:
|
Order Messages
Order Created
code String | "order_created" |
severity String | info |
message String | Order {orderId} created. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the order object with the id property. |
Order Creation Error
code String | "order_creation_error" |
severity String | error |
message String | Order creation failed with approved payment. |
correlationId String | Unique identifier of the event. |
payload Object | Contains paymentReference , sessionId , and the errors array of objects, with the related code and message properties. |
Payments Messages
Payment Connector Error
code String | "payment_connector_error" |
severity String | error |
message String | Payment connector error. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the connector object with the id property. |
Payment Methods Received
Generated when Checkout receives and loads the payment methods configured for the Application.
code String | "payment_methods_received" |
severity String | info |
message String | Payment methods received. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the paymentMethods array of objects with the type and connectorId properties. |
Multiple Payment Method Containers
code String | "multiple_vendor_button_containers" |
severity String | warn |
message String | Multiple vendor button containers detected, this may cause issues. |
correlationId String | Unique identifier of the event. |
No Payment Methods
code String | "no_payment_methods" |
severity String | error |
message String | There are no payment methods configured. |
correlationId String | Unique identifier of the event. |
Payment Method Loading
Generated when the selected payment method is loading.
code String | "payment_method_loading" |
severity String | info |
message String | Payment method loading. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the method object with the type and connectorId properties. |
Payment Method Loading Error
Generated when the loading of the selected payment method fails.
code String | "payment_method_loading_error" |
severity String | error |
message String | Payment method loading failed. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the method object with the type and connectorId properties. |
Payment Method Loaded
Generated when the selected payment method is loaded.
code String | "payment_method_loaded" |
severity String | info |
message String | Payment method loaded. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the method object with the type and connectorId properties. |
Payment Method Selected
Generated when the customer selects the payment method.
code String | "payment_method_selected" |
severity String | info |
message String | Payment method selected. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the method object with the type and hasVendorButton properties. |
Payment Method Selection Confirmation
Generated when the customer has entered the payment method information and moves to the next step.
code String | "payment_method_selection_confirmation" |
severity String | info |
message String | Payment method selected. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the method object with the type and hasVendorButton properties. |
Payment Method Selection Confirmation Failed
Generated when the selection of the payment method by the customer is not successful.
code String | "payment_method_selection_confirmation_failed" |
severity String | info |
message String | Payment method selection failed. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the method object with the type property. |
Payment Started
Generated when the payment starts.
code String | "payment_started" |
severity String | info |
message String | Payment started. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the method object with the type property. |
Payment Failed
Generated when the payment fails.
code String | "payment_failed" |
severity String | error |
message String | Payment failed. |
correlationId String | Unique identifier of the event. |
Payment Cancelled
Generated when the customer cancels the payment (for example, by closing the browser's window).
code String | "payment_cancelled" |
severity String | info |
message String | Payment cancelled. |
correlationId String | Unique identifier of the event. |
Payment Validation Failed
Generated when Checkout and the payment service provider (PSP) do not validate the payment information entered by the customer.
code String | "payment_validation_failed" |
severity String | info |
message String | Payment validation failed. |
correlationId String | Unique identifier of the event. |
Payment Validation Passed
Generated when Checkout and the payment service provider (PSP) validate the payment information entered by the customer.
code String | "payment_validation_passed" |
severity String | info |
message String | Payment validation passed. |
correlationId String | Unique identifier of the event. |
Payment Validation Started
Generated when the validation of the payment information entered by the customer starts.
code String | "payment_validation_started" |
severity String | info |
message String | Payment validation started. |
correlationId String | Unique identifier of the event. |
Payment Verification Started
code String | "payment_verification_started" |
severity String | info |
message String | Payment verification started. |
correlationId String | Unique identifier of the event. |
Payment Verification Timeout
code String | "payment_verification_timeout" |
severity String | error |
message String | Payment verification timeout. |
correlationId String | Unique identifier of the event. |
External Terms And Conditions Pending
code String | "external_terms_and_conditions_pending" |
severity String | info |
message String | External terms and conditions pending. |
correlationId String | Unique identifier of the event. |
Project Messages
Project Is Deactivated
projectKey
is deactivated and cannot be initialized. To activate it, contact the Checkout support team.code String | "project_deactivated" |
severity String | error |
message String | Project {projectKey} is deactivated. |
correlationId String | Unique identifier of the event. |
payload Object | Contains the project object with the key property. |