PackagePriceTypes Test
TXN/PackagePriceTypes/{packagePriceTypeId}
Update an existing package price type.
Http Verb PUT
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/PackagePriceTypes/{packagePriceTypeId}

URI Parameters

Parameter Name Data Type Required Notes
packagePriceTypeId integer Y

Request Body

Request object type : PackagePriceType

Request object type PackagePriceType has the following properties.
Property Name Data Type Length Required Readonly Notes
CreatedBy string N Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
Id integer Y Non-updatable
PackageId integer Y
FK: T_PKG.pkg_no
PriceTypeId integer Y
FK: TR_PRICE_TYPE.id   Resource: PriceTypes
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
{
  "CreatedDateTime": "2025-04-24T04:54:31.4955254-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "Id": 1,
  "UpdatedDateTime": "2025-04-24T04:54:31.4955254-07:00",
  "UpdatedBy": "sample string 3",
  "PackageId": 4,
  "PriceTypeId": 5
}
<PackagePriceType xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T04:54:31.4955254-07:00</CreatedDateTime>
  <Id>1</Id>
  <PackageId>4</PackageId>
  <PriceTypeId>5</PriceTypeId>
  <UpdatedBy>sample string 3</UpdatedBy>
  <UpdatedDateTime>2025-04-24T04:54:31.4955254-07:00</UpdatedDateTime>
</PackagePriceType>

Response object type : PackagePriceType

Response object type PackagePriceType has the following properties.
Property Name Data Type Length Required Readonly Notes
CreatedBy string N Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
Id integer Y Non-updatable
PackageId integer Y
FK: T_PKG.pkg_no
PriceTypeId integer Y
FK: TR_PRICE_TYPE.id   Resource: PriceTypes
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
{
  "CreatedDateTime": "2025-04-24T04:54:31.4955254-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "Id": 1,
  "UpdatedDateTime": "2025-04-24T04:54:31.4955254-07:00",
  "UpdatedBy": "sample string 3",
  "PackageId": 4,
  "PriceTypeId": 5
}
<PackagePriceType xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T04:54:31.4955254-07:00</CreatedDateTime>
  <Id>1</Id>
  <PackageId>4</PackageId>
  <PriceTypeId>5</PriceTypeId>
  <UpdatedBy>sample string 3</UpdatedBy>
  <UpdatedDateTime>2025-04-24T04:54:31.4955254-07:00</UpdatedDateTime>
</PackagePriceType>
Change Version Description Contract Old New
Parameter Changed 15.0.0 packagePriceTypeId has been marked as required. Required