GET api/hrci/CustomPricing?processingString={processingString}&webProductId={webProductId}&quantity={quantity}&price={price}&contactId={contactId}&shipToAddress1={shipToAddress1}&shipToAddress2={shipToAddress2}&shipToAddress3={shipToAddress3}&shipToCity={shipToCity}&shipToState={shipToState}&shipToZip={shipToZip}&shipToCountry={shipToCountry}&accountId={accountId}

Get Custom Pricing

Request Information

URI Parameters

NameDescriptionTypeAdditional information
processingString

System.String

Required

webProductId

System.String

Required

quantity

System.Int32

Required

price

System.Decimal

Required

contactId

System.String

Required

shipToAddress1

System.String

Required

shipToAddress2

System.String

Required

shipToAddress3

System.String

Required

shipToCity

System.String

Required

shipToState

System.String

Required

shipToZip

System.String

Required

shipToCountry

System.String

Required

accountId

System.String

Default value is

Body Parameters

None.

Response Information

Resource Description

Altai.Web.Services.Models.CustomHrci.CustomPricing
NameDescriptionTypeAdditional information
WebProductId

System.Guid

None.

Price

System.Decimal

None.

Taxes

System.Decimal

None.

Shipping

System.Decimal

None.

Response Formats

application/json, text/json

Sample:
{
  "WebProductId": "be441fec-2e95-460b-a618-8d976b5c5825",
  "Price": 2.0,
  "Taxes": 3.0,
  "Shipping": 4.0
}

application/xml, text/xml

Sample:
<CustomPricing xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Altai.Web.Services.Models.CustomHrci">
  <Price>2</Price>
  <Shipping>4</Shipping>
  <Taxes>3</Taxes>
  <WebProductId>be441fec-2e95-460b-a618-8d976b5c5825</WebProductId>
</CustomPricing>