POST api/QuotationSKUSave
Request Information
URI Parameters
None.
Body Parameters
QuotationSaveSKU| Name | Description | Type | Additional information |
|---|---|---|---|
| QuotationNo | integer |
None. |
|
| Line | integer |
None. |
|
| Style | string |
None. |
|
| All | integer |
None. |
|
| Uplift | integer |
None. |
|
| Price | decimal number |
None. |
|
| quoteSKU | Collection of QuoteSKU |
None. |
Request Formats
application/json, text/json
Sample:
{
"QuotationNo": 1,
"Line": 2,
"Style": "sample string 3",
"All": 4,
"Uplift": 5,
"Price": 6.0,
"quoteSKU": [
{
"Colour": "sample string 1",
"Fitting": "sample string 2",
"Size": "sample string 3",
"Price": "sample string 4"
},
{
"Colour": "sample string 1",
"Fitting": "sample string 2",
"Size": "sample string 3",
"Price": "sample string 4"
}
]
}
text/xml
Sample:
<QuotationSaveSKU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRMAPP.Models">
<All>4</All>
<Line>2</Line>
<Price>6</Price>
<QuotationNo>1</QuotationNo>
<Style>sample string 3</Style>
<Uplift>5</Uplift>
<quoteSKU>
<QuoteSKU>
<Colour>sample string 1</Colour>
<Fitting>sample string 2</Fitting>
<Price>sample string 4</Price>
<Size>sample string 3</Size>
</QuoteSKU>
<QuoteSKU>
<Colour>sample string 1</Colour>
<Fitting>sample string 2</Fitting>
<Price>sample string 4</Price>
<Size>sample string 3</Size>
</QuoteSKU>
</quoteSKU>
</QuotationSaveSKU>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |