Newer Version Available
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Provides product prices for buyer accounts in a WebStore.
Given a commercestorepricing.PricingRequest, return the commercestorepricing.PricingResponse that computes the price for the products in the pricing request.
| Param | Description |
|---|---|
PricingRequest | The input request that contains the products to be priced along with other contextual information |
| Type | Description |
|---|---|
| PricingResponse | The price of each of the products passed in as the request |
1PricingService.processPrice(pricingRequest);Given a commercestorepricing.TransactionalPricingRequest, return the commercestorepricing.TransactionalPricingResponse that computes the price for the products and total in the pricing request. The calculation always uses the catalog pricing as a starting point, and adjustments are applied based on other factors.
| Param | Description |
|---|---|
TransactionalPricingRequest | The input request that contains the products to be priced along with other contextual information |
| Type | Description |
|---|---|
| TransactionalPricingResponse | The price of each of the products and total passed in as the request |
1PricingService.processTransactionalPrice(transactionalPricingRequest);Newer Version Available