v1

latestOpenAPI 3.0.3Apache 2.02026-07-175678720.5 KB
events

Provides the list of events sent by mission control (AMR) which have occurred within a given timerange at a particular place

get/events/amr

Query parameters

placestring required
fromTimestampstring date-time required
toTimestampstring date-time required
objectTypestring
maxResultSizeinteger

Response

Successful Operation.

Example response

{
  "amrEvents": [
    {
      "place": "city=Santa Clara/building=NVIDIA Voyager/room=Visitor Lobby",
      "events": [
        {
          "objectId": "Transporter 1",
          "objectType": "AMR",
          "type": "route-change",
          "currentLocation": [
            [
              0,
              0
            ]
          ],
          "currentRoute": [
            [
              1,
              1
            ]
          ],
          "newRoute": [
            [
              2,
              2
            ]
          ],
          "blockages": [
            {
              "center": "POINT(28.625360369528934 77.2227479486792)",
              "radius": 5
            }
          ]
        }
      ]
    }
  ]
}