Performances Test
TXN/Performances/Zones?performanceIds={performanceIds}&sectionIds={sectionIds}
Get performance zone availability for a set of performances. If sectionIds are specified only zones with

matching sections will be returned and the SectionSummaries node will be populated.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/Performances/Zones?performanceIds={performanceIds}&sectionIds={sectionIds}

URI Parameters

Parameter Name Data Type Required Notes
performanceIds string Y
sectionIds string N

Request Body

None.

No request body.

Response object type : Collection of PerformanceZoneAvailability

Response object type Collection of PerformanceZoneAvailability has the following properties.
Property Name Data Type Length Required Readonly Notes
AvailableCount integer N Total Available for the performance zone.
Inactive boolean Only used in TXN/Packages/{packageId}/PerformanceGroups to indicate zones or performances that are no longer available.
PerformanceId integer N
SectionSummaries Collection of SectionSummary
Zone ZoneSummary N
[
  {
    "Zone": {
      "Id": 1,
      "Description": "sample string 2",
      "ShortDescription": "sample string 3",
      "Rank": 4,
      "ZoneMapId": 5,
      "ZoneTime": "sample string 6",
      "Abbreviation": "sample string 7",
      "ZoneLegend": "sample string 8",
      "ZoneGroup": {
        "Id": 1,
        "Description": "sample string 1",
        "AliasDescription": "sample string 2",
        "Inactive": true,
        "Rank": 3
      }
    },
    "SectionSummaries": [
      {
        "Id": 1,
        "Description": "sample string 1"
      },
      {
        "Id": 1,
        "Description": "sample string 1"
      }
    ],
    "PerformanceId": 1,
    "AvailableCount": 2,
    "Inactive": true
  },
  {
    "Zone": {
      "Id": 1,
      "Description": "sample string 2",
      "ShortDescription": "sample string 3",
      "Rank": 4,
      "ZoneMapId": 5,
      "ZoneTime": "sample string 6",
      "Abbreviation": "sample string 7",
      "ZoneLegend": "sample string 8",
      "ZoneGroup": {
        "Id": 1,
        "Description": "sample string 1",
        "AliasDescription": "sample string 2",
        "Inactive": true,
        "Rank": 3
      }
    },
    "SectionSummaries": [
      {
        "Id": 1,
        "Description": "sample string 1"
      },
      {
        "Id": 1,
        "Description": "sample string 1"
      }
    ],
    "PerformanceId": 1,
    "AvailableCount": 2,
    "Inactive": true
  }
]
<PerformanceZoneAvailabilities xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <PerformanceZoneAvailability>
    <AvailableCount>2</AvailableCount>
    <Inactive>true</Inactive>
    <PerformanceId>1</PerformanceId>
    <SectionSummaries>
      <Section>
        <Description>sample string 1</Description>
        <Id>1</Id>
      </Section>
      <Section>
        <Description>sample string 1</Description>
        <Id>1</Id>
      </Section>
    </SectionSummaries>
    <Zone>
      <Abbreviation>sample string 7</Abbreviation>
      <Description>sample string 2</Description>
      <Id>1</Id>
      <Rank>4</Rank>
      <ShortDescription>sample string 3</ShortDescription>
      <ZoneGroup>
        <AliasDescription>sample string 2</AliasDescription>
        <Description>sample string 1</Description>
        <Id>1</Id>
        <Inactive>true</Inactive>
        <Rank>3</Rank>
      </ZoneGroup>
      <ZoneLegend>sample string 8</ZoneLegend>
      <ZoneMapId>5</ZoneMapId>
      <ZoneTime>sample string 6</ZoneTime>
    </Zone>
  </PerformanceZoneAvailability>
  <PerformanceZoneAvailability>
    <AvailableCount>2</AvailableCount>
    <Inactive>true</Inactive>
    <PerformanceId>1</PerformanceId>
    <SectionSummaries>
      <Section>
        <Description>sample string 1</Description>
        <Id>1</Id>
      </Section>
      <Section>
        <Description>sample string 1</Description>
        <Id>1</Id>
      </Section>
    </SectionSummaries>
    <Zone>
      <Abbreviation>sample string 7</Abbreviation>
      <Description>sample string 2</Description>
      <Id>1</Id>
      <Rank>4</Rank>
      <ShortDescription>sample string 3</ShortDescription>
      <ZoneGroup>
        <AliasDescription>sample string 2</AliasDescription>
        <Description>sample string 1</Description>
        <Id>1</Id>
        <Inactive>true</Inactive>
        <Rank>3</Rank>
      </ZoneGroup>
      <ZoneLegend>sample string 8</ZoneLegend>
      <ZoneMapId>5</ZoneMapId>
      <ZoneTime>sample string 6</ZoneTime>
    </Zone>
  </PerformanceZoneAvailability>
</PerformanceZoneAvailabilities>
Change Version Description Contract Old New
Parameter Changed 15.0.0 performanceIds has been marked as required. Required