GET api/unitpriceoverrides/{unitpriceoverrideid}/unitpriceoverridepricecodes
Retrieves a collection of unit price override price codes for a specified unit price override
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| unitpriceoverrideid |
The identifier of the unit price override for which price codes will be returned |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A list of unit price override price codes
Collection of UnitPriceOverridePriceCodeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PriceCode |
Gets or sets the price code for this resource |
string |
None. |
| UnitPrice |
Gets or sets the unit price for this resource |
decimal number |
None. |
| Url |
Gets or sets the link representing a link back to the resource |
string |
None. |
| ID |
Gets or sets the identifier for the resource |
integer |
None. |
Response Formats
application/json, text/json, application/json-patch+json
Sample:
[
{
"url": "sample string 3",
"id": 4,
"priceCode": "sample string 1",
"unitPrice": 2.0
},
{
"url": "sample string 3",
"id": 4,
"priceCode": "sample string 1",
"unitPrice": 2.0
}
]