Skip to main content
WEBHOOK
parkingTransaction
{
  "parkingId": 2791368361,
  "parkingUserId": 8993734,
  "licenseNumber": "ABC123",
  "startDate": "2025-12-04T12:02:37Z",
  "endDate": "2025-12-04T13:12:00Z",
  "parkingAreaId": 291048,
  "parkingAreaName": "Nyköpings lasarett, besökande",
  "parkingOperatorId": 403,
  "parkingOperatorName": "EuroPark Svenska AB",
  "price": 22.45,
  "priceVatAmount": 4.49,
  "priceExclusiveVatAmount": 17.96,
  "transactionFeeExclusiveVatAmount": 3.96,
  "transactionFeeVatAmount": 0.99,
  "transactionFee": 4.95,
  "currency": "SEK"
}

Authorizations

Authorization
string
header
required

HTTP Basic Auth: EasyPark Fleet sets the Authorization header with a Basic <base64(username:password)> value.

Body

application/json

Parking transaction data.

Parking transaction data sent by EasyPark Fleet when a paid parking session ends.

parkingId
integer<int64>

Unique identifier of the parking session.

Example:

2791368361

parkingUserId
integer<int64>

EasyPark parking user ID of the fleet company.

Example:

8993734

licenseNumber
string

Vehicle license plate number.

Example:

"ABC123"

startDate
string

Parking session start time (ISO 8601, format: yyyy-MM-dd'T'HH:mm:ssX).

Example:

"2025-12-04T12:02:37Z"

endDate
string

Parking session end time (ISO 8601, format: yyyy-MM-dd'T'HH:mm:ssX).

Example:

"2025-12-04T13:12:00Z"

parkingAreaId
integer<int64>

Identifier of the parking area.

Example:

291048

parkingAreaName
string

Name of the parking area.

Example:

"Nyköpings lasarett, besökande"

parkingOperatorId
integer<int64>

Identifier of the parking operator.

Example:

403

parkingOperatorName
string

Name of the parking operator.

Example:

"EuroPark Svenska AB"

price
number

Total parking fee inclusive of VAT.

Example:

22.45

priceVatAmount
number

VAT portion of the total parking fee.

Example:

4.49

priceExclusiveVatAmount
number

Total parking fee exclusive of VAT.

Example:

17.96

transactionFeeExclusiveVatAmount
number

Transaction fee exclusive of VAT.

Example:

3.96

transactionFeeVatAmount
number

VAT portion of the transaction fee.

Example:

0.99

transactionFee
number

Total transaction fee inclusive of VAT.

Example:

4.95

currency
string

ISO 4217 currency code.

Example:

"SEK"

Response

Conflict: duplicate transaction. Will not be retried.