POST Park/Event/Price/Dates

Request Information

URI Parameters

None.

Body Parameters

ParkingEventDatesPriceRequest
NameDescriptionTypeAdditional information
zoneID

integer

None.

start

date

None.

end

date

None.

Request Formats

application/json, text/json

Sample:
{
  "zoneID": 1,
  "start": "2026-04-04T06:15:32.8033225+01:00",
  "end": "2026-04-04T06:15:32.8033225+01:00"
}

application/xml, text/xml

Sample:
<ParkingEventDatesPriceRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkingAPI.Models">
  <end>2026-04-04T06:15:32.8033225+01:00</end>
  <start>2026-04-04T06:15:32.8033225+01:00</start>
  <zoneID>1</zoneID>
</ParkingEventDatesPriceRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ParkingEventPriceResponse
NameDescriptionTypeAdditional information
status

RCResponse

None.

response

ParkingEventPrice

None.

Response Formats

application/json, text/json

Sample:
{
  "status": {
    "rc": 1,
    "response": "sample string 2",
    "success": true
  },
  "response": {
    "price": 1.0,
    "eventPriceReference": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<ParkingEventPriceResponse 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:eventPriceReference>sample string 2</d2p1:eventPriceReference>
    <d2p1:price>1</d2p1:price>
  </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>
</ParkingEventPriceResponse>