Request Data Object - Apttus_CPQApi.CPQ.FinalizeCartRequestDO
Field
Type
Description
CartId
ID
The Id of the cart.
Response Data Object - Apttus_CPQApi.CPQ.FinalizeCartResponseDO
Field
Type
Description
IsSuccess
Boolean
Indicates whether finalizing the cart items was successful.
Code Sample
The sample enables you to finalize a cart with a specific cartID and synchronizes the products (line items) added to the cart with the quote or proposal used to generate the cart. You can create a button finalize cart which the user will click once the products in the cart are adjusted and final. Invoke this API on click of the button.
public void finalizeCart()
{
// create the finalize cart request
Apttus_CpqApi.CPQ.FinalizeCartRequestDO request = new Apttus_CpqApi.CPQ.FinalizeCartRequestDO();
// add request parameters
request.CartId = CartId;
// finalize the cart
Apttus_CpqApi.CPQ.FinalizeCartResponseDO response = Apttus_CpqApi.CPQWebService.finalizeCart(request);
}
CODE
Integration Details
Use the following information in your integrations with CPQ Web Services API. Refer to Integrating Conga with External Systems for information on how to get started.