POST quote/part/{quote}

Adds a Quote Part.

Request Information

URI

https://ofd-api.blueprintcpq.net/quote/part/{quote}

URI Parameters

NameDescriptionTypeAdditional information
quote

Quote Identifier to attach part to

globally unique identifier

Required

Body Parameters

Part Identifier to attach to Quote

PartQuantity
NameDescriptionTypeAdditional information
Part

globally unique identifier

None.

Quantity

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Part": "dca557c4-095b-442f-9d5d-959bb27039a3",
  "Quantity": 2
}

text/html

Sample:
{"Part":"dca557c4-095b-442f-9d5d-959bb27039a3","Quantity":2}

application/xml, text/xml

Sample:
<PartQuantity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
  <Part>dca557c4-095b-442f-9d5d-959bb27039a3</Part>
  <Quantity>2</Quantity>
</PartQuantity>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

True if added, false otherwise

boolean

Response Formats

application/json, text/json, text/html

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>