GET CustomerQuote/GetCustomerQuote?CustID={CustID}&DeptID={DeptID}&ProdID={ProdID}

Returns customer quotes.

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
CustID

Customer id to get the quotes for.

string

Required

DeptID

Department id of the product to get the quotes for.

string

Required

ProdID

Product id of the product to get the quotes for.

string

Required

Body Parameters

Response Information

Resource Description

Returns customer quotes.

AgvCustomerQuote
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
Count

Count of how many Quote JSON dictionaries.

string
Quotes

JSON dictionary of Quote.

Collection of Quote

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Count": "sample string 3",
  "Quotes": [
    {
      "Number": "sample string 1",
      "Price": 2.1,
      "ExpirationDate": "sample string 3"
    },
    {
      "Number": "sample string 1",
      "Price": 2.1,
      "ExpirationDate": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<AgvCustomerQuote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Customer">
  <Count>sample string 3</Count>
  <Message>sample string 2</Message>
  <Quotes>
    <Quote>
      <ExpirationDate>sample string 3</ExpirationDate>
      <Number>sample string 1</Number>
      <Price>2.1</Price>
    </Quote>
    <Quote>
      <ExpirationDate>sample string 3</ExpirationDate>
      <Number>sample string 1</Number>
      <Price>2.1</Price>
    </Quote>
  </Quotes>
  <Status>sample string 1</Status>
</AgvCustomerQuote>