PUT shows/{showId}/partPriceLists/{partPriceListId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| partPriceListId | integer |
Required |
|
| showId | string |
None. |
Body Parameters
PartPriceListUpdateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| AlternateDescription | string |
None. |
|
| MinimumQuantity | decimal number |
None. |
|
| IsTaxable | boolean |
None. |
|
| IsOrderable | boolean |
None. |
|
| IsOutOfStock | boolean |
None. |
|
| PriceTiers | Collection of PriceTierUpdateDto |
None. |
|
| CreatePriceTiers | Collection of PriceTierCreateDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"AlternateDescription": "sample string 1",
"MinimumQuantity": 1.0,
"IsTaxable": true,
"IsOrderable": true,
"IsOutOfStock": true,
"PriceTiers": [
{
"Id": 1,
"EffectiveDate": "2025-12-14T22:14:26.599205+00:00",
"Price": 3.0
},
{
"Id": 1,
"EffectiveDate": "2025-12-14T22:14:26.599205+00:00",
"Price": 3.0
}
],
"CreatePriceTiers": [
{
"PartPriceListId": 1,
"EffectiveDate": "2025-12-14T22:14:26.599205+00:00",
"Price": 3.0
},
{
"PartPriceListId": 1,
"EffectiveDate": "2025-12-14T22:14:26.599205+00:00",
"Price": 3.0
}
]
}
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. |