POST Park/Event/Cancellation/Undo
Request Information
URI Parameters
None.
Body Parameters
ParkingEventCancellationUndoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| parkedReference | string |
None. |
|
| reason | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"parkedReference": "sample string 1",
"reason": "sample string 2"
}
application/xml, text/xml
Sample:
<ParkingEventCancellationUndoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkingAPI.Models"> <parkedReference xmlns="http://schemas.datacontract.org/2004/07/">sample string 1</parkedReference> <reason xmlns="http://schemas.datacontract.org/2004/07/">sample string 2</reason> </ParkingEventCancellationUndoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RCResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| rc | integer |
None. |
|
| response | string |
None. |
|
| success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"rc": 1,
"response": "sample string 2",
"success": true
}
application/xml, text/xml
Sample:
<RCResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkingAPI.Models"> <rc>1</rc> <response>sample string 2</response> <success>true</success> </RCResponse>