POST api/CreateMultipleUseIdentifier
POST implementation of CreateMultipleUseIdentifier
Request Information
URI Parameters
None.
Body Parameters
CreateIdentifierRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| APIKey |
An active API Key for the APT.MobileAPI service |
string |
None. |
| FacilityNo |
The facility number of the target carpark |
integer |
None. |
| ValidCarparks |
The carparks available for use by the identifier |
Collection of integer |
None. |
| TicketNo |
The ticket number to be used as an identifier (License plate no. or QR barcode text) |
string |
None. |
| TicketType |
The type of identifier. 4=License Plate, 5=Barcode |
unsigned integer |
None. |
| ProductId |
The product identifier (used to define the access rules such as valid carparks) |
string |
None. |
| ValidFrom |
The time this identifier is valid from |
date |
None. |
| ValidUntil |
The time this identifier is valid until |
date |
None. |
| IsNeutral |
The neutral status for the identifier |
boolean |
None. |
| ReferenceNo |
The reference no for this identifier. This will auto-generate if null or empty ) |
string |
None. |
Request Formats
application/json, text/json
{
"APIKey": "sample string 1",
"FacilityNo": 2,
"ValidCarparks": [
1,
2
],
"TicketNo": "sample string 3",
"TicketType": 4,
"ProductId": "sample string 5",
"ValidFrom": "2026-02-03T07:26:37.8858601+00:00",
"ValidUntil": "2026-02-03T07:26:37.8858601+00:00",
"IsNeutral": true,
"ReferenceNo": "sample string 9"
}
Response Information
Resource Description
CreateIdentifierResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| FacilityNo |
The facility number of the target carpark |
integer |
None. |
| TicketNo |
The ticket number to be used as an identifier (License plate no. or QR barcode text) |
string |
None. |
| TicketType |
The type of identifier. 4=License Plate, 5=Barcode |
unsigned integer |
None. |
| ProductId |
The product identifier (used to define the access rules such as valid carparks) |
string |
None. |
| ValidFrom |
The time allowed for entry into the carpark |
date |
None. |
| ValidUntil |
The time this transaction has been paid until |
date |
None. |
| ReferenceNo |
The reference no for this identifier |
string |
None. |
Response Formats
application/json, text/json
{
"FacilityNo": 1,
"TicketNo": "sample string 2",
"TicketType": 3,
"ProductId": "sample string 4",
"ValidFrom": "2026-02-03T07:26:37.9021606+00:00",
"ValidUntil": "2026-02-03T07:26:37.9021606+00:00",
"ReferenceNo": "sample string 7"
}