GET Tickets?ticketId={ticketId}&perfIds={perfIds}&userEntrance={userEntrance}&userId={userId}&deviceName={deviceName}&controlId={controlId}

Returns information about a specified seat based on ticket number.

Request Information

Parameters

NameDescriptionAdditional information
ticketId
Ticket Id

Define this parameter in the request URI.

perfIds
Performance Ids

Define this parameter in the request URI.

userEntrance
User Entrance

Define this parameter in the request URI.

userId
User Id

Define this parameter in the request URI.

deviceName
Device Name

Define this parameter in the request URI.

controlId
Control Id

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CustomerId": 2,
  "CustomerName": "sample string 3",
  "PerformanceId": 4,
  "PerformanceCode": "sample string 5",
  "PerformanceDate": "sample string 6",
  "PerformanceTime": "sample string 7",
  "PerformanceName": "sample string 8",
  "SectionDescription": "sample string 9",
  "Row": "sample string 10",
  "Seat": "sample string 11",
  "Entrance": "sample string 12",
  "Note": "sample string 13",
  "UrgentIndicator": "sample string 14",
  "Status": "sample string 15",
  "ActivityId": 16,
  "IssueAction": 17,
  "IssueClosed": "sample string 18",
  "AutoClose": "sample string 19",
  "AreaPromptQuantity": "sample string 20",
  "ScanCount": 21,
  "ControlId": 22,
  "IsGaHouse": "sample string 23",
  "CustomerMemberships": [
    {
      "Id": 1,
      "OrganizationId": 2,
      "OrganizationName": "sample string 3",
      "MembershipLevel": "sample string 4",
      "AdultLimit": 5,
      "ChildLimit": 6,
      "OtherLimit": 7
    },
    {
      "Id": 1,
      "OrganizationId": 2,
      "OrganizationName": "sample string 3",
      "MembershipLevel": "sample string 4",
      "AdultLimit": 5,
      "ChildLimit": 6,
      "OtherLimit": 7
    }
  ],
  "MembershipEvents": [
    {
      "OrganizationId": 1,
      "PerformanceId": 2,
      "PerformanceName": "sample string 3",
      "AttendanceId": 4,
      "AdultCount": 5,
      "ChildCount": 6,
      "OtherCount": 7
    },
    {
      "OrganizationId": 1,
      "PerformanceId": 2,
      "PerformanceName": "sample string 3",
      "AttendanceId": 4,
      "AdultCount": 5,
      "ChildCount": 6,
      "OtherCount": 7
    }
  ],
  "CompositeEvents": [
    {
      "PerformanceId": 1,
      "PerformanceName": "sample string 2",
      "TicketId": 3
    },
    {
      "PerformanceId": 1,
      "PerformanceName": "sample string 2",
      "TicketId": 3
    }
  ]
}

application/xml, text/xml

Sample:
<Ticket xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>1</Id>
  <CustomerId>2</CustomerId>
  <CustomerName>sample string 3</CustomerName>
  <PerformanceId>4</PerformanceId>
  <PerformanceCode>sample string 5</PerformanceCode>
  <PerformanceDate>sample string 6</PerformanceDate>
  <PerformanceTime>sample string 7</PerformanceTime>
  <PerformanceName>sample string 8</PerformanceName>
  <SectionDescription>sample string 9</SectionDescription>
  <Row>sample string 10</Row>
  <Seat>sample string 11</Seat>
  <Entrance>sample string 12</Entrance>
  <Note>sample string 13</Note>
  <UrgentIndicator>sample string 14</UrgentIndicator>
  <Status>sample string 15</Status>
  <ActivityId>16</ActivityId>
  <IssueAction>17</IssueAction>
  <IssueClosed>sample string 18</IssueClosed>
  <AutoClose>sample string 19</AutoClose>
  <AreaPromptQuantity>sample string 20</AreaPromptQuantity>
  <ScanCount>21</ScanCount>
  <ControlId>22</ControlId>
  <IsGaHouse>sample string 23</IsGaHouse>
  <CustomerMemberships>
    <CustomerMembership>
      <Id>1</Id>
      <OrganizationId>2</OrganizationId>
      <OrganizationName>sample string 3</OrganizationName>
      <MembershipLevel>sample string 4</MembershipLevel>
      <AdultLimit>5</AdultLimit>
      <ChildLimit>6</ChildLimit>
      <OtherLimit>7</OtherLimit>
    </CustomerMembership>
    <CustomerMembership>
      <Id>1</Id>
      <OrganizationId>2</OrganizationId>
      <OrganizationName>sample string 3</OrganizationName>
      <MembershipLevel>sample string 4</MembershipLevel>
      <AdultLimit>5</AdultLimit>
      <ChildLimit>6</ChildLimit>
      <OtherLimit>7</OtherLimit>
    </CustomerMembership>
  </CustomerMemberships>
  <MembershipEvents>
    <MembershipEvent>
      <OrganizationId>1</OrganizationId>
      <PerformanceId>2</PerformanceId>
      <PerformanceName>sample string 3</PerformanceName>
      <AttendanceId>4</AttendanceId>
      <AdultCount>5</AdultCount>
      <ChildCount>6</ChildCount>
      <OtherCount>7</OtherCount>
    </MembershipEvent>
    <MembershipEvent>
      <OrganizationId>1</OrganizationId>
      <PerformanceId>2</PerformanceId>
      <PerformanceName>sample string 3</PerformanceName>
      <AttendanceId>4</AttendanceId>
      <AdultCount>5</AdultCount>
      <ChildCount>6</ChildCount>
      <OtherCount>7</OtherCount>
    </MembershipEvent>
  </MembershipEvents>
  <CompositeEvents>
    <CompositeEvent>
      <PerformanceId>1</PerformanceId>
      <PerformanceName>sample string 2</PerformanceName>
      <TicketId>3</TicketId>
    </CompositeEvent>
    <CompositeEvent>
      <PerformanceId>1</PerformanceId>
      <PerformanceName>sample string 2</PerformanceName>
      <TicketId>3</TicketId>
    </CompositeEvent>
  </CompositeEvents>
</Ticket>