Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| priceAdjustmentTypeId |
The price adjustment type identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The price adjustment type, if it exists.
Pico.PriceAdjustmentType| Name | Description | Type | Additional information |
|---|---|---|---|
| code |
Gets or sets the code. |
string |
None. |
| description |
Gets or sets the description. |
string |
None. |
| isActive |
Gets or sets a value indicating whether this is active. |
boolean |
None. |
| isManual |
Gets or sets a value indicating whether price adjustment type is manual. |
boolean |
None. |
| marginPurpose |
Gets or sets the margin purpose. |
string |
None. |
| preNegativeCostAdjustment |
Gets or sets a value indicating whether price adjustment type is a pre-negative cost adjustment. |
boolean |
None. |
| priceAdjustmentTier |
Gets or sets the price adjustment tier. |
integer |
None. |
| id |
Gets or sets the price adjustment type identifier. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": "sample String 1",
"description": "sample String 2",
"isActive": true,
"isManual": true,
"marginPurpose": "sample String 5",
"preNegativeCostAdjustment": true,
"priceAdjustmentTier": 7,
"id": "8"
}
text/html
Sample:
{"code":"sample String 1","description":"sample String 2","isActive":true,"isManual":true,"marginPurpose":"sample String 5","preNegativeCostAdjustment":true,"priceAdjustmentTier":7,"id":"8"}
application/xml, text/xml
Sample:
<PriceAdjustmentType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Code>sample String 1</Code> <Description>sample String 2</Description> <IsActive>true</IsActive> <IsManual>true</IsManual> <MarginPurpose>sample String 5</MarginPurpose> <PreNegativeCostAdjustment>true</PreNegativeCostAdjustment> <PriceAdjustmentTier>7</PriceAdjustmentTier> <PriceAdjustmentTypeId>8</PriceAdjustmentTypeId> </PriceAdjustmentType>