v1

latestOpenAPI 3.1.02026-07-26650239.3 KB
Missions

Get Mission Templates

Get mission templates in your organization.

get/v0/mission/templates

Query parameters

updated_afterstring date-time

Search for Mission Templates updated after this timestamp. The timestamp should follow the ISO 8601 standard format.

Example:2022-05-03T03:10:52.503+00:00
updated_beforestring date-time

Search for Mission Templates updated before this timestamp. The timestamp should follow the ISO 8601 standard format.

Example:2022-05-03T03:10:52.503+00:00
namestring

Search for Missions Template by name.

per_pageinteger

Number of results to return per page

page_numberinteger

Return a specific page number from results

Response

List of mission templates returned from GET /mission/templates endpoint

error_messagestring
skydio_error_codeinteger required
status_codeinteger required

Example response

{
  "data": {
    "mission_templates": [
      {
        "photo_interval_settings": {
          "custom_photo_quality": 90,
          "custom_shutter_speed": "AUTO",
          "time_interval": 2
        },
        "return_settings": {
          "height": 100,
          "height_behavior": "ABSOLUTE",
          "lost_connection_wait_time_seconds": 60,
          "mission_completed_return_type": "DIRECT",
          "mission_interrupted_return_type": "BACKTRACK",
          "speed": 2
        },
        "updated": "2022-05-03T03:10:52.503+00:00"
      }
    ]
  }
}