GET Houses?perfIds={perfIds}&includeHolds={includeHolds}&section={section}

Returns all available seats filtered by section for a given performance with an option for showing held seats as available.

Request Information

Parameters

NameDescriptionAdditional information
perfIds

Define this parameter in the request URI.

includeHolds

Define this parameter in the request URI.

section

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "Section": "sample string 1",
    "SeatRow": "sample string 2",
    "SeatNumber": "sample string 3",
    "Hold": "sample string 4",
    "PerformanceId": 5,
    "SeatId": 6
  },
  {
    "Section": "sample string 1",
    "SeatRow": "sample string 2",
    "SeatNumber": "sample string 3",
    "Hold": "sample string 4",
    "PerformanceId": 5,
    "SeatId": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfHouse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <House>
    <Section>sample string 1</Section>
    <SeatRow>sample string 2</SeatRow>
    <SeatNumber>sample string 3</SeatNumber>
    <Hold>sample string 4</Hold>
    <PerformanceId>5</PerformanceId>
    <SeatId>6</SeatId>
  </House>
  <House>
    <Section>sample string 1</Section>
    <SeatRow>sample string 2</SeatRow>
    <SeatNumber>sample string 3</SeatNumber>
    <Hold>sample string 4</Hold>
    <PerformanceId>5</PerformanceId>
    <SeatId>6</SeatId>
  </House>
</ArrayOfHouse>