Developer Preview
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Apex class for Tax Service.
Given a commercestoretax.GetStoreTaxesInfoRequest, return the commercestoretax.GetStoreTaxesInfoResponse that fetches the taxation information in the context of web store and ship-to-address.
| Param | Description |
|---|---|
request | The input request contains Product Ids, Ship-to-Address and other information. |
| Type | Description |
|---|---|
GetStoreTaxesInfoResponse | Taxation information configured for this web store. |
1TaxService.processGetStoreTaxesInfo(getStoreTaxesInfoRequest);Given a commercestoretax.CalculateTaxesRequest, return the commercestoretax.CalculateTaxesResponse that represents the calculated tax values for the given products.
| Param | Description |
|---|---|
request | The input request contains CalculateTaxesRequestItemGroup and other information. |
| Type | Description |
|---|---|
CalculateTaxesResponse | Calculate taxes response |
1TaxService.processCalculateTaxes(calculateTaxesRequest);Developer Preview