Skip to main content
Manage your CameraPark fleet.

Webhook

In addition to the API endpoints, EasyPark also offers a webhook for real time parking transactions. To set this up as a customer, please contact us for details. The following example illustrates the payload that will be sent with the webhook
{
    "parkingId": 12345,
    "licenseNumber": "AAA123",
    "startDate": "2020-03-24T14:16:00Z",
    "endDate": "2020-03-24T16:10:00Z",
    "price": 24.45,
    "priceVatAmount": 4.89,
    "priceExclusiveVatAmount": 19.56,
    "currency":"EUR",
    "parkingAreaId": 4567,
    "parkingAreaName": "area name",
    "parkingOperatorId": 123,
    "parkingOperatorName": "operator name",
    "transactionFee": 2.75
    "transactionFeeVatAmount": 0.50
    "transactionFeeExclusiveVatAmount":2.25
}
Parameters description:
ParameterTypeDescription
parkingIdlongParking transaction identifier for EasyPark
licenseNumberStringCar license number
startDateStringStart time of the parking. ISO 8601 date&time
endDateStringEnd time of the parking. ISO 8601 date&time
priceNumberPrice of parking
priceVatAmountNumberVat amount of the price
priceExclusiveVatAmountNumberExclusive vat amount of the price
currencyStringCurrency of parking price
parkingAreaIdlongParking area identifier for EasyPark
parkingAreaNameStringParking area name
parkingOperatorIdlongParking area operator identifier for EasyPark
parkingOperatorNameStringParking operator name
transactionFeeNumberTransaction fee for parking
transactionFeeVatAmountNumberVat amount of the transaction fee
transactionFeeExclusiveVatAmountNumberExclusive vat amount of the price
In case of client side (HTTP4XX) or server side (HTTP5XX) error when posting parking transaction to partner, it will be retried hourly until it is accepted by the partner.