POST Park/Event/Cancellation

Request Information

URI Parameters

None.

Body Parameters

ParkingEventCancellationRequest
NameDescriptionTypeAdditional 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:
<ParkingEventCancellationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <parkedReference>sample string 1</parkedReference>
  <reason>sample string 2</reason>
</ParkingEventCancellationRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RCResponse
NameDescriptionTypeAdditional 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>