OPS Web

OPS Web

About

Our software platform OPS offers digital services around parking. With OPS-Web we offer a restful API for retrieving mobile HTML views of parking objects (pois) for integration into mobile applications.
Aufbau des Webviews.

Getting Started

To use OPS-Web, you need a JWT token, which you can obtain from our technical contacts. The token must be sent with every GET request in the header. Example:

Authorization: Basic {yourToken},

Usage

To execute a request you need the POI ID defined by Parconomy. A list of available POIs or access to the API interface to retrieve a list can be obtained from our technical contacts.

Structure of the API Endpoint:

Endpoint:

GET: 
https://ops-web.parconomy.org/api/pois/{poiId}
Response:
<html>MobileView Poi...</html>

Optional color scheme:

Query parameter:

?primaryColor={yourPrimary}&scondaryColor={yourSecondary}

The color code for the primary and secondary color can be sent in all web-typical formats. The only thing to keep in mind is that the '#' must be replaced by '%23' when using the hexadecimal notation. Examples:

red, green, blue 
%23FF0000, %2300FF00,%230000FF 

Example

Request:

GET: 
http://ops-web.parconomy.org/api/pois/ae5dec371cf84c56a9260b454e7f5d5e?primaryColor=blue&secondaryColor=white

Response (HTML):