?apiKey=<YOUR-API-KEY>
GET https://api.pitstop-one.com/api/
{"status":"ok"}
curl https://api.pitstop-one.com/api/?apiKey=<YOUR-API-KEY>
POST https://api.pitstop-one.com/api/import/oracle
Content-type: text/csv
Using the example csv
curl -vvv -H 'Content-type: text/csv' -X POST --data-binary @example.csv \
https://api.pitstop-one.com/api/import/oracle?apiKey=<YOUR-API-KEY>
POST https://api.pitstop-one.com/api/doors/:id/open
{ "id": "pitstop-user-id" }
curl -d'{ "id": "eab561c0-49b3-11e9-b163-a13da04e97bc" }' https://api.pitstop-one.com/api/doors/-/open?apiKey=<YOUR-API-KEY>