POST api/v1/PriceList
Request Information
URI Parameters
None.
Body Parameters
PriceListInput| Name | Description | Type | Additional information |
|---|---|---|---|
| LocID | integer |
None. |
|
| CompID | integer |
None. |
|
| ModelID | integer |
None. |
|
| SaleID | integer |
None. |
|
| DeclarationType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"LocID": 1,
"CompID": 2,
"ModelID": 3,
"SaleID": 4,
"DeclarationType": "sample string 5"
}
application/xml, text/xml
Sample:
<PriceListInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CompID>2</CompID> <DeclarationType>sample string 5</DeclarationType> <LocID>1</LocID> <ModelID>3</ModelID> <SaleID>4</SaleID> </PriceListInput>
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. |