Conga Product Documentation

Welcome to the new doc site. Some of your old bookmarks will no longer work. Please use the search bar to find your desired topic.

download

Retrieving Incentives Applied on the Cart

You can use this API to fetch the incentives that are applied on a cart.

API

Signature

getAppliedIncentiveCodesForCart

webService static Apttus_CPQApi.CPQ.GetAppliedIncentiveCodesForCartResponseDO getAppliedIncentiveCodesForCart(Apttus_CPQApi.CPQ.GetAppliedIncentiveCodesForCartRequestDO request)

Request Parameter

Name

Type

Description

request

The incentive code request data object

Request Data Object - Apttus_CPQApi.CPQ.GetAppliedIncentiveCodesForCartRequestDO

Name

Type

Description

CartId Id

The ID of the cart from which you want to fetch the applied promotion

Data Object - Apttus_CPQApi.CPQ.SetIncentivesForCartResponseDO

Name

Type

Description

IncentiveCodes List <IncentiveCodes>

The list of the incentives codes that are applied on the cart

Code Sample

The 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);