Adding Price Ramps to a Cart (CPQ Web Service)
After you add a line item to a cart, this API enables you to add primary and secondary ramp line items for the line item. Once the ramp line items are created, you can also update the ramp line item details or delete ramp line item details using standard SOQL queries. This API adds one or more products (with default options) to the cart along with quantity, term, start date, and end date.
When you use CPQ out of the box, invoke the ramp using the red icon to the left of the primary line item.
Once you click the ramp icon, the ramp dialog appears:
The ramp dialog allows you to add, edit dates and quantity, make adjustments, save the changes, and cancel the changes.
- Edit the start date, end date, quantity, adjustment type and adjustment amount based on the custom setting.
- The start date of a ramp line item defaults to the end date+1 of the previous line item.
- The end date of a ramp line item defaults to a date such that the difference between the start date and end date is the same as that of the previous line item.
- The user can add more ramp line items after or in between the ramp line items.
- The user can remove the new line before saving by clicking on the icon in the right most column.
Use the addMultiProducts API to add products to the cart.
API | Signature |
---|---|
addMultiProducts | webService static Apttus_CPQApi.CPQ.AddMultiProductResponseDO addMultiProducts(Apttus_CPQApi.CPQ.AddMultiProductRequestDO request) |
Parameters | ||
---|---|---|
Name | Type | Description |
request |
| The request data object. |
Request Data Object - Apttus_CPQApi.CPQ.AddMultiProductRequestDO | ||
---|---|---|
Field | Type | Description |
CartId |
| The Id of the cart. |
SelectedProducts |
| The list of selected product data objects. |
Data Object - Apttus_CPQApi.CPQ.SelectedProductDO | ||
---|---|---|
Field | Type | Description |
AttributeValues |
| List of attributes values. |
Comments |
| Comments associated with the record. |
CopyBundleConfigurationFromSource |
| You can use this to copy the configuration of the bundle from the source |
CustomData |
| This can be used to include the list of custom fields you have added to the product. |
CustomFields |
| List of custom fields created for your product. |
EndDate |
| The end date. |
ProductId |
| Id of the product bundle. |
Quantity |
| The bundle quantity. |
RelatedLineItems |
| List of related line items for bundle |
SellingTerm |
| The bundle selling term. |
SourceFields |
| List of the fields in the source bundle that you want to copy. |
SourceId |
| ID of the source bundle. |
StartDate |
| The start date. You should ensure you use the correct date format. |
Response Data Object - Apttus_CPQApi.CPQ.AddMultiProductResponseDO | ||
---|---|---|
Field | Type | Description |
LineNumbers |
| The list of line numbers added to the cart. |
Code Sample
- Added Products to the cart using the AddMultiProducts APIs,
- Updated the Price for the added products using the updatePriceforCart API.
- Selected the products for which you want to add a ramp for.