Configure Price Quote (CPQ) CPQ for SOAP API Developers API Reference CPQ Web Service(Apttus_CPQApi) Current: Retrieving Incentives Applied on the Cart PDF Download PDF Download page Retrieving Incentives Applied on the Cart. Current page All pages Retrieving Incentives Applied on the Cart You can use this API to fetch the incentives that are applied on a cart.APISignaturegetAppliedIncentiveCodesForCartwebService static Apttus_CPQApi.CPQ.GetAppliedIncentiveCodesForCartResponseDO getAppliedIncentiveCodesForCart(Apttus_CPQApi.CPQ.GetAppliedIncentiveCodesForCartRequestDO request)Request ParameterNameTypeDescriptionrequestApttus_CPQApi.CPQ.GetAppliedIncentiveCodesForCartRequestDOThe incentive code request data objectRequest Data Object - Apttus_CPQApi.CPQ.GetAppliedIncentiveCodesForCartRequestDONameTypeDescriptionCartIdIdThe ID of the cart from which you want to fetch the applied promotionData Object - Apttus_CPQApi.CPQ.SetIncentivesForCartResponseDONameTypeDescriptionIncentiveCodesList <IncentiveCodes>The list of the incentives codes that are applied on the cartCode SampleThe sample code below enables you to fetch the incentives applied on the cart. Apttus_CPQApi.CPQ.GetAppliedIncentiveCodesForCartRequestDO request3 = new Apttus_CPQApi.CPQ.GetAppliedIncentiveCodesForCartRequestDO(); request3.CartId = configSO.Id; Apttus_CPQApi.CPQ.GetAppliedIncentiveCodesForCartResponseDO result3 = Apttus_CPQApi.CPQWebService.getAppliedIncentiveCodesForCart(request3); CODE ×