POST quote/part/{quote}
Adds a Quote Part.
Request Information
URI
https://eurotherm-web-api.xaitcpq.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": "2403c61a-0260-47b5-b6bf-555deea51b69", "Quantity": 2 }
text/html
Sample:
{"Part":"2403c61a-0260-47b5-b6bf-555deea51b69","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>2403c61a-0260-47b5-b6bf-555deea51b69</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>