POST api/GetTicketFromBarcode

POST implementation of GetTicketFromBarcode

Request Information

URI Parameters

None.

Body Parameters

GetTicketFromBarcodeRequest
NameDescriptionTypeAdditional information
APIKey

An active API Key for the APT.MobileAPI service

string

None.

Barcode

The content of the scanned barcode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "APIKey": "sample string 1",
  "Barcode": "sample string 2"
}

Response Information

Resource Description

GetTicketFromBarcodeResponse
NameDescriptionTypeAdditional information
FacilityNo

The facility number of the target carpark

integer

None.

TicketNo

The complete parking ticket number

string

None.

TicketType

The type of parking ticket. 0=Standard Ticket, 4=License Plate, 5=External Card System

unsigned integer

None.

EntryTime

The time of entry into the carpark

date

None.

Response Formats

application/json, text/json

Sample:
{
  "FacilityNo": 1,
  "TicketNo": "sample string 2",
  "TicketType": 3,
  "EntryTime": "2025-08-31T06:27:06.9580567+00:00"
}