The Checkout API finalizes a CPQ cart by performing all mandatory validations, pricing recalculations, asset‑generation steps and transaction commits required to create a ready‑to‑bill Order.
It is the logical culmination of the add → configure → price → validate → checkout pattern common to digital‑commerce and assisted‑selling flows.
Based on the header object, submit the object to create the quote, order, or assets.
If the header object is Opportunity, submit the opportunity to create a quote.
If the header object is Quote, submit the quote to create an order.
If the header object is Order, submit the order to create assets.
This API supports the guest user enhancements that Salesforce introduced with the Winter ‘21 release. To encrypt and decrypt data for guest users, use the UserSecurity class with this API. See Guest User Technical Details.
For additional information, see UserSecurity Class and CPQ and Digital Commerce Changes for Guest Users.
Rest Handler
1APICheckoutItemsCartsCPQV2
Rest Method
1checkoutItems
Remote Service
1CpqAppHandler
Remote Method
1checkout
Apex Remote Input Map
1Map<String, Object> inputMap = new Map<String, Object>{2 'cartId' => '{CART_ID}'3};4Map<String, Object> outputMap = new Map<String, Object>();5Map<String, Object> optionsMap = new Map<String, Object>();6CpqAppHandler handler = new CpqAppHandler();7handler.invokeMethod('checkout', inputMap, outputMap, optionsMap);
ContextId is required for the Checkout Items in Cart remote action, which is used in the Guided Selling OmniScript.
‘objectType’ conveys the type of the object that was created by the Checkout process.
For Eg: If Checkout is performed from an Opportunity, the objectType will be Quote.