v1
latestOpenAPI 3.1.02026-07-26650239.3 KBAlerts
Get Alert History
Search mission alerts by various parameters.
get/v0/alerts_history
Query parameters
flight_idstring uuid
Limit results to a specific flight ID. ID can be formatted as a full UUID, or can omit - characters, and is case insensitive
Example:3BEE061D93EC47728BAC8D71F43BB142
vehicle_serialstring
Limit results to a specific vehicle, by serial number
Example:Skydio2-1234
alert_type'HUMAN_DETECTED' | 'MISSION_INCOMPLETE' | 'DOCK_ERROR' | 'SCHEDULED_MISSION_FAILED_TAKEOFF' | 'FLIGHT_STATUS' | 'ONLINE_STATUS' | 'MEDIA_FILE_AVAILABLE' | 'MEDIA_AVAILABLE_FOR_SCAN' | 'TELEMETRY_AVAILABLE' | 'WAYPOINT_PROGRESS' | 'LIVE_STREAM_STATUS_CHANGED'
Search for Alerts by Type
mission_template_idstring uuid
Limit results to a specific mission template ID (UUID)
alerts_beforestring date-time
Search for Alerts before this timestamp. The timestamp should follow the ISO 8601 standard format.
Example:2022-05-03T03:10:52.503+00:00
alerts_sincestring date-time
Search for Alerts since this timestamp. The timestamp should follow the ISO 8601 standard format.
Example:2022-05-03T03:10:52.503+00:00
per_pageinteger
Number of results to return per page
page_numberinteger
Return a specific page number from results
Response
List of Alerts returned from GET /alerts_history endpoint
Example response
{
"data": {
"alerts": [
{
"alert_time": "2022-05-03T03:10:52.503+00:00"
}
]
}
}