Skip to content

Latest commit

 

History

History
67 lines (51 loc) · 699 Bytes

README.md

File metadata and controls

67 lines (51 loc) · 699 Bytes

pcae

Backend

Endpoints

POST: collect/new

body:

{
  "timestamp": "Timestamp",
  "co_value": "Int",
  "longitude": "Double",
  "latitude": "Double"
}

response:

String (success)

GET: retreive/all

no-args

response:

[
  {
    "id": "Long",
    "longitude": "Double",
    "latitude": "Double",
    "co_value": "Int",
    "timestamp": "Timestamp"
  }
]

POST: retreive/between

body:

{
  "minLat": "Double",
  "minLon": "Double",
  "maxLat": "Double",
  "maxLon": "Double"
}

response:

[
  {
    "id": "Long",
    "longitude": "Double",
    "latitude": "Double",
    "co_value": "Int",
    "timestamp": "Timestamp"
  }
]