GET Sections?performanceId={performanceId}

Returns all valid sections for a given performance.

Request Information

Parameters

NameDescriptionAdditional information
performanceId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2"
  },
  {
    "Id": 1,
    "Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSection xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Section>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </Section>
  <Section>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </Section>
</ArrayOfSection>