GET Houses/Summary?perfStr={perfStr}&includeHolds={includeHolds}
Returns a summary of available seats filtered by section or entry point for a given performance with an option for showing held seats as available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| perfStr |
Define this parameter in the request URI. |
|
| includeHolds |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"AreaDescription": "sample string 1",
"TotalCount": 2,
"PerformanceId": 3,
"PerformanceName": "sample string 4",
"RecType": "sample string 5",
"OpenCount": 6,
"HeldCount": 7,
"AttendCount": 8
},
{
"AreaDescription": "sample string 1",
"TotalCount": 2,
"PerformanceId": 3,
"PerformanceName": "sample string 4",
"RecType": "sample string 5",
"OpenCount": 6,
"HeldCount": 7,
"AttendCount": 8
}
]
application/xml, text/xml
Sample:
<ArrayOfHouseSummary xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<HouseSummary>
<AreaDescription>sample string 1</AreaDescription>
<TotalCount>2</TotalCount>
<PerformanceId>3</PerformanceId>
<PerformanceName>sample string 4</PerformanceName>
<RecType>sample string 5</RecType>
<OpenCount>6</OpenCount>
<HeldCount>7</HeldCount>
<AttendCount>8</AttendCount>
</HouseSummary>
<HouseSummary>
<AreaDescription>sample string 1</AreaDescription>
<TotalCount>2</TotalCount>
<PerformanceId>3</PerformanceId>
<PerformanceName>sample string 4</PerformanceName>
<RecType>sample string 5</RecType>
<OpenCount>6</OpenCount>
<HeldCount>7</HeldCount>
<AttendCount>8</AttendCount>
</HouseSummary>
</ArrayOfHouseSummary>