DELETE ProductQuote/DeleteProductQuote?QuoteNumber={QuoteNumber}

Delete a product quote.

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
QuoteNumber

Quote number to delete.

string

Required

Body Parameters

Response Information

Resource Description

Delete a product quote.

AgvProductQuote
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
Count

Count of how many ProductQuote JSON dictionaries.

string
ProductQuotes

JSON dictionary of ProductQuote.

Collection of ProductQuote

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Count": "sample string 3",
  "ProductQuotes": [
    {
      "ProductName": "sample string 1",
      "Number": "sample string 2",
      "Price": 3.1,
      "QuoteDate": "sample string 4"
    },
    {
      "ProductName": "sample string 1",
      "Number": "sample string 2",
      "Price": 3.1,
      "QuoteDate": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<AgvProductQuote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Product">
  <Count>sample string 3</Count>
  <Message>sample string 2</Message>
  <ProductQuotes>
    <ProductQuote>
      <Number>sample string 2</Number>
      <Price>3.1</Price>
      <ProductName>sample string 1</ProductName>
      <QuoteDate>sample string 4</QuoteDate>
    </ProductQuote>
    <ProductQuote>
      <Number>sample string 2</Number>
      <Price>3.1</Price>
      <ProductName>sample string 1</ProductName>
      <QuoteDate>sample string 4</QuoteDate>
    </ProductQuote>
  </ProductQuotes>
  <Status>sample string 1</Status>
</AgvProductQuote>