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
PartQuantity| Name | Description | Type | Additional information |
|---|---|---|---|
| Part | globally unique identifier |
None. |
|
| Quantity | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Part": "c00c2f6d-92fc-4d66-ae9b-01cc9eaa9da6",
"Quantity": 2
}
text/html
Sample:
{"Part":"c00c2f6d-92fc-4d66-ae9b-01cc9eaa9da6","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>c00c2f6d-92fc-4d66-ae9b-01cc9eaa9da6</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>