PUT ScanCounts
Updates the admission count from the scan of a member card.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| request |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"TicketId": 1,
"CustomerId": 2,
"UserArea": "sample string 3",
"PerformanceId": 4,
"MemberCard": "sample string 5",
"UserId": "sample string 6",
"ScanStr": "sample string 7",
"ScanCount": 8,
"AdultCount": 9,
"ChildCount": 10,
"OtherCount": 11
}
application/xml, text/xml
Sample:
<ScanCountUpdateRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TicketId>1</TicketId> <CustomerId>2</CustomerId> <UserArea>sample string 3</UserArea> <PerformanceId>4</PerformanceId> <MemberCard>sample string 5</MemberCard> <UserId>sample string 6</UserId> <ScanStr>sample string 7</ScanStr> <ScanCount>8</ScanCount> <AdultCount>9</AdultCount> <ChildCount>10</ChildCount> <OtherCount>11</OtherCount> </ScanCountUpdateRequest>
Response Information
Response body formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"ScanCount": 2,
"AdultCount": 3,
"ChildCount": 4,
"OtherCount": 5
}
application/xml, text/xml
Sample:
<ScanCountUpdateResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Status>sample string 1</Status> <ScanCount>2</ScanCount> <AdultCount>3</AdultCount> <ChildCount>4</ChildCount> <OtherCount>5</OtherCount> </ScanCountUpdateResponse>