GET Monitors?constituentId={constituentId}&perfIds={perfIds}
Returns data of patrons who have been scanned in for this performance.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| constituentId |
Define this parameter in the request URI. |
|
| perfIds |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"CustomerId": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"EnvelopeSalutation": "sample string 4",
"PerformanceId": 5,
"PerformanceCode": "sample string 6",
"PerformanceName": "sample string 7",
"SeatLocation": "sample string 8",
"SeatCount": 9,
"FirstScan": "sample string 10",
"LastScan": "sample string 11"
},
{
"CustomerId": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"EnvelopeSalutation": "sample string 4",
"PerformanceId": 5,
"PerformanceCode": "sample string 6",
"PerformanceName": "sample string 7",
"SeatLocation": "sample string 8",
"SeatCount": 9,
"FirstScan": "sample string 10",
"LastScan": "sample string 11"
}
]
application/xml, text/xml
Sample:
<ArrayOfMonitor xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Monitor>
<CustomerId>1</CustomerId>
<FirstName>sample string 2</FirstName>
<LastName>sample string 3</LastName>
<EnvelopeSalutation>sample string 4</EnvelopeSalutation>
<PerformanceId>5</PerformanceId>
<PerformanceCode>sample string 6</PerformanceCode>
<PerformanceName>sample string 7</PerformanceName>
<SeatLocation>sample string 8</SeatLocation>
<SeatCount>9</SeatCount>
<FirstScan>sample string 10</FirstScan>
<LastScan>sample string 11</LastScan>
</Monitor>
<Monitor>
<CustomerId>1</CustomerId>
<FirstName>sample string 2</FirstName>
<LastName>sample string 3</LastName>
<EnvelopeSalutation>sample string 4</EnvelopeSalutation>
<PerformanceId>5</PerformanceId>
<PerformanceCode>sample string 6</PerformanceCode>
<PerformanceName>sample string 7</PerformanceName>
<SeatLocation>sample string 8</SeatLocation>
<SeatCount>9</SeatCount>
<FirstScan>sample string 10</FirstScan>
<LastScan>sample string 11</LastScan>
</Monitor>
</ArrayOfMonitor>