GET AccessAreas?scanStr={scanStr}&userArea={userArea}&userId={userId}&deviceName={deviceName}&adultCnt={adultCnt}&childCnt={childCnt}&otherCnt={otherCnt}&deviceFamily={deviceFamily}&controlId={controlId}

Returns information about whether the customer can access a special area.

Request Information

Parameters

NameDescriptionAdditional information
scanStr

Define this parameter in the request URI.

userArea

Define this parameter in the request URI.

userId

Define this parameter in the request URI.

deviceName

Define this parameter in the request URI.

adultCnt

Define this parameter in the request URI.

childCnt

Define this parameter in the request URI.

otherCnt

Define this parameter in the request URI.

deviceFamily

Define this parameter in the request URI.

controlId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "CustomerName": "sample string 2",
  "AreaName": "sample string 3",
  "ReasonMessage": "sample string 4",
  "CustomMessage": 5,
  "Note": "sample string 6",
  "UrgentIndicator": "sample string 7",
  "Status": "sample string 8",
  "ActivityId": 9,
  "IssueAction": 10,
  "IssueClosed": "sample string 11",
  "AutoClose": "sample string 12",
  "TicketId": 13,
  "PerformanceId": 14,
  "MemberCard": "sample string 15",
  "AreaMaxEntries": 16,
  "AreaPromptQuantity": "sample string 17",
  "ScanCount": 18,
  "AdultCount": 19,
  "ChildCount": 20,
  "OtherCount": 21,
  "ControlId": 22,
  "CompositeEvents": [
    {
      "PerformanceId": 1,
      "PerformanceName": "sample string 2",
      "TicketId": 3
    },
    {
      "PerformanceId": 1,
      "PerformanceName": "sample string 2",
      "TicketId": 3
    }
  ]
}

application/xml, text/xml

Sample:
<AccessArea xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <CustomerId>1</CustomerId>
  <CustomerName>sample string 2</CustomerName>
  <AreaName>sample string 3</AreaName>
  <ReasonMessage>sample string 4</ReasonMessage>
  <CustomMessage>5</CustomMessage>
  <Note>sample string 6</Note>
  <UrgentIndicator>sample string 7</UrgentIndicator>
  <Status>sample string 8</Status>
  <ActivityId>9</ActivityId>
  <IssueAction>10</IssueAction>
  <IssueClosed>sample string 11</IssueClosed>
  <AutoClose>sample string 12</AutoClose>
  <TicketId>13</TicketId>
  <PerformanceId>14</PerformanceId>
  <MemberCard>sample string 15</MemberCard>
  <AreaMaxEntries>16</AreaMaxEntries>
  <AreaPromptQuantity>sample string 17</AreaPromptQuantity>
  <ScanCount>18</ScanCount>
  <AdultCount>19</AdultCount>
  <ChildCount>20</ChildCount>
  <OtherCount>21</OtherCount>
  <ControlId>22</ControlId>
  <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>
</AccessArea>