GET tickets/boxsmartcard/atn/{atn}
Finds a Smart Box by ATN Number.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| atn | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TicketBoxSmartCard| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id |
integer |
None. |
| Ticketid |
Ticket Id |
integer |
None. |
| Boxtype |
Box Type Id |
integer |
None. |
| BoxSerial |
Box Serial Number |
string |
None. |
| SCSerial |
Smart Card Serial Number |
string |
None. |
| Atnnumber |
Ticket Number |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"ticketid": 1,
"boxtype": 1,
"boxSerial": "sample string 1",
"scSerial": "sample string 2",
"atnnumber": "sample string 3"
},
{
"id": 1,
"ticketid": 1,
"boxtype": 1,
"boxSerial": "sample string 1",
"scSerial": "sample string 2",
"atnnumber": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfTicketBoxSmartCard xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
<TicketBoxSmartCard>
<Atnnumber>sample string 3</Atnnumber>
<BoxSerial>sample string 1</BoxSerial>
<Boxtype>1</Boxtype>
<Id>1</Id>
<SCSerial>sample string 2</SCSerial>
<Ticketid>1</Ticketid>
</TicketBoxSmartCard>
<TicketBoxSmartCard>
<Atnnumber>sample string 3</Atnnumber>
<BoxSerial>sample string 1</BoxSerial>
<Boxtype>1</Boxtype>
<Id>1</Id>
<SCSerial>sample string 2</SCSerial>
<Ticketid>1</Ticketid>
</TicketBoxSmartCard>
</ArrayOfTicketBoxSmartCard>