GET Performances?perfIds={perfIds}

Returns descriptive information for a string of performances.

Request Information

Parameters

NameDescriptionAdditional information
perfIds

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Code": "sample string 2",
    "Name": "sample string 3",
    "DateTime": "2026-04-05T03:07:05.1476169-07:00"
  },
  {
    "Id": 1,
    "Code": "sample string 2",
    "Name": "sample string 3",
    "DateTime": "2026-04-05T03:07:05.1476169-07:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPerformance xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Performance>
    <Id>1</Id>
    <Code>sample string 2</Code>
    <Name>sample string 3</Name>
    <DateTime>2026-04-05T03:07:05.1476169-07:00</DateTime>
  </Performance>
  <Performance>
    <Id>1</Id>
    <Code>sample string 2</Code>
    <Name>sample string 3</Name>
    <DateTime>2026-04-05T03:07:05.1476169-07:00</DateTime>
  </Performance>
</ArrayOfPerformance>