POST api/QuotationProductLineSave
Request Information
URI Parameters
None.
Body Parameters
QuotationLineSaveToConfirm| Name | Description | Type | Additional information |
|---|---|---|---|
| QuotationNo | integer |
None. |
|
| Customer | string |
None. |
|
| Address | string |
None. |
|
| quotationLineSave | Collection of QuotationLineSave |
None. |
Request Formats
application/json, text/json
Sample:
{
"QuotationNo": 1,
"Customer": "sample string 2",
"Address": "sample string 3",
"quotationLineSave": [
{
"Line": 1,
"Style": "sample string 2",
"Status": 3,
"All": 4,
"Uplift": 5,
"Price": 6.0,
"Del": 7,
"Exist": 8,
"Confirm": 9
},
{
"Line": 1,
"Style": "sample string 2",
"Status": 3,
"All": 4,
"Uplift": 5,
"Price": 6.0,
"Del": 7,
"Exist": 8,
"Confirm": 9
}
]
}
text/xml
Sample:
<QuotationLineSaveToConfirm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRMAPP.Models">
<Address>sample string 3</Address>
<Customer>sample string 2</Customer>
<QuotationNo>1</QuotationNo>
<quotationLineSave>
<QuotationLineSave>
<All>4</All>
<Confirm>9</Confirm>
<Del>7</Del>
<Exist>8</Exist>
<Line>1</Line>
<Price>6</Price>
<Status>3</Status>
<Style>sample string 2</Style>
<Uplift>5</Uplift>
</QuotationLineSave>
<QuotationLineSave>
<All>4</All>
<Confirm>9</Confirm>
<Del>7</Del>
<Exist>8</Exist>
<Line>1</Line>
<Price>6</Price>
<Status>3</Status>
<Style>sample string 2</Style>
<Uplift>5</Uplift>
</QuotationLineSave>
</quotationLineSave>
</QuotationLineSaveToConfirm>
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. |