POST api/v1/Shipments/{ShipmentID}/DeclineAll

Decline all quotes

Request Information

Parameters

NameDescriptionAdditional information
ShipmentID
Shipment ID

Define this parameter in the request URI.

quotes
Quotes Decline All DTO

Define this parameter in the request body.

Request body formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
[
  {
    "QuoteID": 1,
    "DeclineReason": "sample string 2",
    "Remarks": "sample string 3"
  },
  {
    "QuoteID": 1,
    "DeclineReason": "sample string 2",
    "Remarks": "sample string 3"
  },
  {
    "QuoteID": 1,
    "DeclineReason": "sample string 2",
    "Remarks": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfQuotesDeclineAllDTO>
  <QuotesDeclineAllDTO>
    <QuoteID>1</QuoteID>
    <DeclineReason>sample string 2</DeclineReason>
    <Remarks>sample string 3</Remarks>
  </QuotesDeclineAllDTO>
  <QuotesDeclineAllDTO>
    <QuoteID>1</QuoteID>
    <DeclineReason>sample string 2</DeclineReason>
    <Remarks>sample string 3</Remarks>
  </QuotesDeclineAllDTO>
  <QuotesDeclineAllDTO>
    <QuoteID>1</QuoteID>
    <DeclineReason>sample string 2</DeclineReason>
    <Remarks>sample string 3</Remarks>
  </QuotesDeclineAllDTO>
</ArrayOfQuotesDeclineAllDTO>

Response Information

bool

Response body formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean>true</boolean>