v1

latestOpenAPI 3.1.02026-07-26650239.3 KB
Markers

Upsert Marker (Beta)

Create or update a marker. This will show up as an incident in the map view of Remote Flight Deck for DFR Command customers.

post/v0/marker

Request body

areastring

The area that the marker is associated with. Ex. "5" (precinct number), "Downtown" (sector name), etc.

descriptionstring required

Detailed description of the marker that will appear in the marker details.

event_timestring date-time required

The time of the event that the marker is associated with.

latitudenumber required

Latitude in degrees.

longitudenumber required

Longitude in degrees.

source_namestring

Partner application name. Ex. Axon, Fusus, etc.

titlestring

A short title for the marker that will appear on the list view for the marker.

type'INCIDENT' | 'NG911' | 'GUNSHOT_DETECTION' | 'UAS_DETECTION' required

The type of the marker. This will affect how the marker is displayed on the map view.

uuidstring uuid
versionnumber

An increasing number that represents the version of the marker. Once this field is set, future updates must use a higher version number for changes to take effect. Updates with the same or a lower version will be ignored.

Example request

{
  "event_time": "2022-05-03T03:10:52.503+00:00",
  "marker_details": {
    "caller_phone_number": "+12125551234"
  }
}

Response

Marker returned from GET and POST /marker endpoints

error_messagestring
skydio_error_codeinteger required
status_codeinteger required

Example response

{
  "data": {
    "marker": {
      "event_time": "2022-05-03T03:10:52.503+00:00",
      "marker_details": {
        "caller_phone_number": "+12125551234"
      }
    }
  }
}