GET api/Import/CustomerPricing/GetCustomerPricing?apiKey={apiKey}&erpCustomerNumber={erpCustomerNumber}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
apiKey

string

Required

erpCustomerNumber

string

Required

Body Parameters

None.

Response Information

Resource Description

CustomerPricingResponse
NameDescriptionTypeAdditional information
CustomerPricingDetail

CustomerPricing

None.

Response Formats

application/json, text/json

Sample:
{
  "CustomerPricingDetail": {
    "ContractExpiration": "2026-04-17T08:04:38.7557199-04:00",
    "LastPriceChange": "2026-04-17T08:04:38.7557199-04:00",
    "NextPriceChange": "2026-04-17T08:04:38.7557199-04:00",
    "PricingFeature": "sample string 4",
    "AdjustmentPercentage": 5.0,
    "ContractPricing": true,
    "UseAdjustment": true,
    "CustomItemAgreement": true,
    "YTDSales": 9.0,
    "PTDSales": 10.0,
    "LastYearSales": 11.0
  }
}

application/xml, text/xml

Sample:
<CustomerPricingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <CustomerPricingDetail>
    <AdjustmentPercentage>5</AdjustmentPercentage>
    <ContractExpiration>2026-04-17T08:04:38.7557199-04:00</ContractExpiration>
    <ContractPricing>true</ContractPricing>
    <CustomItemAgreement>true</CustomItemAgreement>
    <LastPriceChange>2026-04-17T08:04:38.7557199-04:00</LastPriceChange>
    <LastYearSales>11</LastYearSales>
    <NextPriceChange>2026-04-17T08:04:38.7557199-04:00</NextPriceChange>
    <PTDSales>10</PTDSales>
    <PricingFeature>sample string 4</PricingFeature>
    <UseAdjustment>true</UseAdjustment>
    <YTDSales>9</YTDSales>
  </CustomerPricingDetail>
</CustomerPricingResponse>