v1

latestOpenAPI 3.1.02026-07-26650239.3 KB
Missions

Update Mission Template

Update an existing mission template by its uuid.

patch/v0/mission/template/{uuid}

Path parameters

uuidstring required

Request body

OR
OR
OR
OR
OR
OR
OR
OR

Example request

{
  "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
  }
}

Response

Mission template returned from GET, PATCH, or POST /mission/template endpoints

error_messagestring
skydio_error_codeinteger required
status_codeinteger required

Example response

{
  "data": {
    "mission_template": {
      "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"
    }
  }
}