Performances Test
TXN/Performances/{performanceId}/Seats/Holds?seatIds={seatIds}&holdCodeIds={holdCodeIds}&includeAllHolds={includeAllHolds}
Get seat holds for a performance
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/Performances/{performanceId}/Seats/Holds?seatIds={seatIds}&holdCodeIds={holdCodeIds}&includeAllHolds={includeAllHolds}

URI Parameters

Parameter Name Data Type Required Notes
performanceId integer Y
seatIds string N List of seat Ids to return, optional.
holdCodeIds string N List of hold code Ids, optional.
includeAllHolds boolean N Pass true to return all layered holds, including those with a priority other than 1.

Request Body

None.

No request body.

Response object type : Collection of SeatHoldDetail

Response object type Collection of SeatHoldDetail has the following properties.
Property Name Data Type Length Required Readonly Notes
EndDate date
HoldCodeDetail HoldCodeDetail
Priority integer
SeatId integer
[
  {
    "SeatId": 1,
    "EndDate": "2025-04-24T05:25:29.2960592-07:00",
    "Priority": 2,
    "HoldCodeDetail": {
      "Id": 1,
      "Description": "sample string 2",
      "Legend": "sample string 3",
      "IsBlackout": true
    }
  },
  {
    "SeatId": 1,
    "EndDate": "2025-04-24T05:25:29.2960592-07:00",
    "Priority": 2,
    "HoldCodeDetail": {
      "Id": 1,
      "Description": "sample string 2",
      "Legend": "sample string 3",
      "IsBlackout": true
    }
  }
]
<SeatHoldDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <SeatHoldDetail>
    <EndDate>2025-04-24T05:25:29.2960592-07:00</EndDate>
    <HoldCodeDetail>
      <Description>sample string 2</Description>
      <Id>1</Id>
      <IsBlackout>true</IsBlackout>
      <Legend>sample string 3</Legend>
    </HoldCodeDetail>
    <Priority>2</Priority>
    <SeatId>1</SeatId>
  </SeatHoldDetail>
  <SeatHoldDetail>
    <EndDate>2025-04-24T05:25:29.2960592-07:00</EndDate>
    <HoldCodeDetail>
      <Description>sample string 2</Description>
      <Id>1</Id>
      <IsBlackout>true</IsBlackout>
      <Legend>sample string 3</Legend>
    </HoldCodeDetail>
    <Priority>2</Priority>
    <SeatId>1</SeatId>
  </SeatHoldDetail>
</SeatHoldDetails>
Change Version Description Contract Old New
Parameter Changed 15.0.0 performanceId has been marked as required. Required