POST quote/part/{quote}
Adds a Quote Part.
Request Information
URI
https://ofd-api.blueprintcpq.net/quote/part/{quote}
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
quote |
Quote Identifier to attach part to |
globally unique identifier |
Required |
Body Parameters
Part Identifier to attach to Quote
PartQuantityName | Description | Type | Additional information |
---|---|---|---|
Part | globally unique identifier |
None. |
|
Quantity | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "Part": "5e47a5cb-2bfd-43b0-b53b-e4050a8e39d6", "Quantity": 2 }
text/html
Sample:
{"Part":"5e47a5cb-2bfd-43b0-b53b-e4050a8e39d6","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>5e47a5cb-2bfd-43b0-b53b-e4050a8e39d6</Part> <Quantity>2</Quantity> </PartQuantity>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
True if added, false otherwise
booleanResponse 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>