POST Park/Event/Complete
Request Information
URI Parameters
None.
Body Parameters
ParkingEventRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| vrn | string |
None. |
|
| eventPriceReference | string |
None. |
|
| externalEventReference | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"vrn": "sample string 1",
"eventPriceReference": "sample string 2",
"externalEventReference": "sample string 3"
}
application/xml, text/xml
Sample:
<ParkingEventRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkingAPI.Models"> <eventPriceReference>sample string 2</eventPriceReference> <externalEventReference>sample string 3</externalEventReference> <vrn>sample string 1</vrn> </ParkingEventRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ParkingEventResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| status | RCResponse |
None. |
|
| response | ParkingEvent |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": {
"rc": 1,
"response": "sample string 2",
"success": true
},
"response": {
"zone": {
"merchant": {
"merchantID": 1,
"merchantName": "sample string 2"
},
"zoneID": 1,
"zoneName": "sample string 2",
"locationPointList": [
{
"index": 1,
"latitude": 2.1,
"longitude": 3.1
},
{
"index": 1,
"latitude": 2.1,
"longitude": 3.1
}
],
"type": {
"zoneTypeID": 1,
"zoneType": "sample string 2"
}
},
"price": 1.0,
"vrn": "sample string 2",
"externalEventReference": "sample string 3",
"parkingStart": "2026-04-04T06:08:06.0853437+01:00",
"parkingEnd": "2026-04-04T06:08:06.0853437+01:00",
"parkedReference": "sample string 6"
}
}
application/xml, text/xml
Sample:
<ParkingEventResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkingAPI.Models.ReturnModels">
<response xmlns:d2p1="http://schemas.datacontract.org/2004/07/ParkingAPI.Models">
<d2p1:externalEventReference>sample string 3</d2p1:externalEventReference>
<d2p1:parkedReference>sample string 6</d2p1:parkedReference>
<d2p1:parkingEnd>2026-04-04T06:08:06.0853437+01:00</d2p1:parkingEnd>
<d2p1:parkingStart>2026-04-04T06:08:06.0853437+01:00</d2p1:parkingStart>
<d2p1:price>1</d2p1:price>
<d2p1:vrn>sample string 2</d2p1:vrn>
<d2p1:zone>
<d2p1:locationPointList>
<d2p1:GPSPosition>
<d2p1:index>1</d2p1:index>
<d2p1:latitude>2.1</d2p1:latitude>
<d2p1:longitude>3.1</d2p1:longitude>
</d2p1:GPSPosition>
<d2p1:GPSPosition>
<d2p1:index>1</d2p1:index>
<d2p1:latitude>2.1</d2p1:latitude>
<d2p1:longitude>3.1</d2p1:longitude>
</d2p1:GPSPosition>
</d2p1:locationPointList>
<d2p1:merchant>
<d2p1:merchantID>1</d2p1:merchantID>
<d2p1:merchantName>sample string 2</d2p1:merchantName>
</d2p1:merchant>
<d2p1:type>
<d2p1:zoneType>sample string 2</d2p1:zoneType>
<d2p1:zoneTypeID>1</d2p1:zoneTypeID>
</d2p1:type>
<d2p1:zoneID>1</d2p1:zoneID>
<d2p1:zoneName>sample string 2</d2p1:zoneName>
</d2p1:zone>
</response>
<status xmlns:d2p1="http://schemas.datacontract.org/2004/07/ParkingAPI.Models">
<d2p1:rc>1</d2p1:rc>
<d2p1:response>sample string 2</d2p1:response>
<d2p1:success>true</d2p1:success>
</status>
</ParkingEventResponse>