|
InfoWebXMLWebServiceCalculatePrice Method |
Calculates the price based on product, term, currency, discount, number of copies and zip code.
The price value is to be found in the Price property of the InfoWebPrice object which is returned.
It is important that the product term matches the offer term, for this method to return a price.
Namespace: Infosoft.WebservicesAssembly: Infosoft.Webservices (in Infosoft.Webservices.dll) Version: 4.00.0.0
Syntax No code example is currently available or this language may not be supported.
Parameters
- titleCode String
- The code for the subscription title
- productCode String
- Product code
- termCode String
- Term code
- zipCode String
- Zip code
- currencyCode String
- Currency code
- numberOfCopies Int32
- Number of copies
Return Value
InfoWebPriceInfoWebPrice object with status code StatusCodes.OK if the price was calculated successfully. For other possible status codes, see the
remarks section
Remarks Possible status codes:
string titleCode = "VIN";
string productCode = "V6";
string termCode = "12";
string zipCode = "0178";
string currencyCode = "NOK";
int numberOfCopies = 1;
InfoWebPrice priceObject = CalculatePrice(titleCode, productCode, termCode, zipCode, currencyCode, numberOfCopies);
if (priceObject.StatusCode == StatusCodes.OK)
{
decimal price = priceObject.Price;
}
else
{
}
No code example is currently available or this language may not be supported.
See Also