Performances Test
TXN/Performances/{performanceId}/Seats/{seatId}/SingleHold
Apply a single hold on a performance seat.
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/Performances/{performanceId}/Seats/{seatId}/SingleHold

URI Parameters

Parameter Name Data Type Required Notes
performanceId integer Y The performance id.
seatId integer Y The seat id.

Request Body

Request object type : ApplySingleHoldRequest

Request object type ApplySingleHoldRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
HoldCodeId integer Y Hold code Id.
FK: T_HC.hc_no
HoldUntilDate date N Hold until this date.
ReplaceMode integer Replace modes: 1 = Above Existing Hold Codes, 2 = Below Existing, 3 = Ignore if already held, 4 = Replace existing.
{
  "HoldCodeId": 1,
  "ReplaceMode": 2,
  "HoldUntilDate": "2025-04-24T05:27:59.8272286-07:00"
}
<ApplySingleHoldRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <HoldCodeId>1</HoldCodeId>
  <HoldUntilDate>2025-04-24T05:27:59.8272286-07:00</HoldUntilDate>
  <ReplaceMode>2</ReplaceMode>
</ApplySingleHoldRequest>

Response object type : ApplySingleHoldResponse

Response object type ApplySingleHoldResponse has the following properties.
Property Name Data Type Length Required Readonly Notes
HoldCodeId integer The hold code id.
HoldUntilDate date The hold until date.
PerformanceId integer The performance id.
SeatId integer The seat id.
SeatStatus integer N The seat status.
FK: TR_SEAT_STATUS.id
{
  "PerformanceId": 1,
  "SeatId": 2,
  "HoldCodeId": 3,
  "HoldUntilDate": "2025-04-24T05:27:59.8272286-07:00",
  "SeatStatus": 4
}
<ApplySingleHoldResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tessitura.Service.Client.Txn">
  <HoldCodeId>3</HoldCodeId>
  <HoldUntilDate>2025-04-24T05:27:59.8272286-07:00</HoldUntilDate>
  <PerformanceId>1</PerformanceId>
  <SeatId>2</SeatId>
  <SeatStatus>4</SeatStatus>
</ApplySingleHoldResponse>
Change Version Description Contract Old New
Operation Added 15.0.0 ApplySingleHold has been added. ApplySingleHold