PriceEvents Test
TXN/PriceEvents/{priceEventId}
Get details of a price event.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/PriceEvents/{priceEventId}

URI Parameters

Parameter Name Data Type Required Notes
priceEventId integer Y

Request Body

None.

No request body.

Response object type : PriceEvent

Response object type PriceEvent has the following properties.
Property Name Data Type Length Required Readonly Notes
ChangeId integer N
Enabled boolean N
Id integer N
MinPrice decimal number N
PerformanceId integer N
FK: T_PERF.perf_no
PerformancePriceId integer N
FK: T_PERF_PRICE.id   Resource: PerformancePrices
Price decimal number N
StartDateTime date N
{
  "Id": 1,
  "ChangeId": 1,
  "PerformanceId": 1,
  "PerformancePriceId": 1,
  "Price": 2.0,
  "MinPrice": 3.0,
  "Enabled": true,
  "StartDateTime": "2025-04-24T09:41:55.5318519-07:00"
}
<PriceEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ChangeId>1</ChangeId>
  <Enabled>true</Enabled>
  <Id>1</Id>
  <MinPrice>3</MinPrice>
  <PerformanceId>1</PerformanceId>
  <PerformancePriceId>1</PerformancePriceId>
  <Price>2</Price>
  <StartDateTime>2025-04-24T09:41:55.5318519-07:00</StartDateTime>
</PriceEvent>
Change Version Description Contract Old New
Parameter Changed 15.0.0 priceEventId has been marked as required. Required