v62

latestOpenAPI 3.0.3raw.githubusercontent.com2026-07-31136116265.6 KB
event

Get Events of a Fleet by cursor

get/v1/projects/{projectOrProductUID}/fleets/{fleetUID}/events-cursor

Path parameters

projectOrProductUIDstring required
fleetUIDstring required

Query parameters

limitinteger
cursorstring

A cursor, which can be obtained from the next_cursor value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.

sortOrder'asc' | 'desc'
systemFilesOnlyboolean
filesstring
deviceUIDstring[]

A Device UID.

sensorUIDstring[]

A sensor UID to filter events by, matched exactly against the event sensor field. The value may carry any prefix.

startDateinteger

Start date for filtering results, specified as a Unix timestamp

endDateinteger

End date for filtering results, specified as a Unix timestamp

Response

The response body from a GET events by cursor request.

has_moreboolean required

True if there are more events

next_cursorstring required

The cursor value of the next result, which is intended to be used as the "cursor" parameter value of the next call to this method. An empty string is returned if there are no more results after this results set.

Example response

{
  "events": [
    {
      "bars": 2,
      "best_location_when": 1652709545,
      "moved": 7,
      "rsrp": -91,
      "rsrq": -13,
      "rssi": -72,
      "sinr": 18,
      "tower_when": 1669667691,
      "tri_points": 6,
      "tri_when": 1652709545,
      "updates": 1,
      "when": 1656010061,
      "when_ms": 1656010061123,
      "where_when": 1652709545
    }
  ]
}