Paris Specs
Paris is a spec from some implementation of the parking permit system in some city somewhere. It is an xml based spec
GET
/api/v1/paris/searchByRegNo
Get active parking permits for given zone.
Authentication
-
- Name
aPassword
- Type
- Query parameter
- Description
-
?aPassword=password
Parameters
-
- Name
aRegNo
- Type
- string
- Description
-
The registration number to check for active permits.
Request example
curl --request GET \
--url https://api.{tenant}.parkeraisverige.com/api/v1/paris/searchByRegNo
Response
<?xml version="1.0" encoding="UTF-8"?>
<Contractor>
<Result>
<TransactionId>123456789</TransactionId>
<Parkings>
<RegNo>ABC123</RegNo>
<Parking>
<IsFareType>1</IsFareType>
<FareType>Normal taxa</FareType>
<Note>Zon 3122 (Example parking lot), Starttid: 2022-01-01 11:00:00</Note>
</Parking>
<Parking>
<IsFareType>1</IsFareType>
<FareType>Normal taxa</FareType>
<Note>Zon 3123 (Another example parking lot), Starttid: 2022-01-01 12:00:00</Note>
</Parking>
</Parking>
</Parkings>
</Result>
</Contractor>