GET Price/GetPrice?CustID={CustID}&DeptID={DeptID}&ProdID={ProdID}

Returns the heading, price, and level for a customer/product.

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
CustID

The id of the Agvance customer to get the price for.

string

Required

DeptID

Department id of the product to get the price for.

string

Required

ProdID

Product id of the product to get the price for.

string

Required

Body Parameters

Response Information

Resource Description

Returns the heading, price, and level for a customer/product.

AgvPrice
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
PriceData

JSON dictionary of Price.

PriceData

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "PriceData": {
    "Heading": "sample string 1",
    "Price": "sample string 2",
    "Level": "sample string 3",
    "BillingUnit": "sample string 4"
  }
}

application/xml, text/xml

Sample:
<AgvPrice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Inventory.Pricing">
  <Message>sample string 2</Message>
  <PriceData>
    <BillingUnit>sample string 4</BillingUnit>
    <Heading>sample string 1</Heading>
    <Level>sample string 3</Level>
    <Price>sample string 2</Price>
  </PriceData>
  <Status>sample string 1</Status>
</AgvPrice>