PUT shows/{showId}/partPriceLists/{partPriceListId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
partPriceListId

integer

Required

showId

string

None.

Body Parameters

PartPriceListUpdateDto
NameDescriptionTypeAdditional 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-05-06T01:58:17.379394+01:00",
      "Price": 3.0
    },
    {
      "Id": 1,
      "EffectiveDate": "2025-05-06T01:58:17.379394+01:00",
      "Price": 3.0
    }
  ],
  "CreatePriceTiers": [
    {
      "PartPriceListId": 1,
      "EffectiveDate": "2025-05-06T01:58:17.379394+01:00",
      "Price": 3.0
    },
    {
      "PartPriceListId": 1,
      "EffectiveDate": "2025-05-06T01:58:17.379394+01:00",
      "Price": 3.0
    }
  ]
}

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.