POST api/QuotationSaveArtwork
Request Information
URI Parameters
None.
Body Parameters
Collection of QuotationSaveArtwork| Name | Description | Type | Additional information |
|---|---|---|---|
| QuotationNo | integer |
None. |
|
| Line | integer |
None. |
|
| Seq | integer |
None. |
|
| Artwork | string |
None. |
|
| Position | string |
None. |
|
| Price | decimal number |
None. |
|
| Del | integer |
None. |
|
| Exist | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"QuotationNo": 1,
"Line": 2,
"Seq": 3,
"Artwork": "sample string 4",
"Position": "sample string 5",
"Price": 6.0,
"Del": 7,
"Exist": 8
},
{
"QuotationNo": 1,
"Line": 2,
"Seq": 3,
"Artwork": "sample string 4",
"Position": "sample string 5",
"Price": 6.0,
"Del": 7,
"Exist": 8
}
]
text/xml
Sample:
<ArrayOfQuotationSaveArtwork xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRMAPP.Models">
<QuotationSaveArtwork>
<Artwork>sample string 4</Artwork>
<Del>7</Del>
<Exist>8</Exist>
<Line>2</Line>
<Position>sample string 5</Position>
<Price>6</Price>
<QuotationNo>1</QuotationNo>
<Seq>3</Seq>
</QuotationSaveArtwork>
<QuotationSaveArtwork>
<Artwork>sample string 4</Artwork>
<Del>7</Del>
<Exist>8</Exist>
<Line>2</Line>
<Position>sample string 5</Position>
<Price>6</Price>
<QuotationNo>1</QuotationNo>
<Seq>3</Seq>
</QuotationSaveArtwork>
</ArrayOfQuotationSaveArtwork>
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. |