DroneDeploy · Example Payload

Drone Deploy Create Export Example

DronesReality CaptureMappingPhotogrammetry3D ModelsOrthomosaicLiDARConstructionAgricultureAIAerialRobotics

Drone Deploy Create Export Example is an example object payload from DroneDeploy, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://www.dronedeploy.com/graphql",
    "headers": {
      "Content-Type": "application/json",
      "Authorization": "Bearer YOUR_DRONEDEPLOY_API_KEY"
    },
    "body": {
      "query": "mutation CreateExport($input: CreateExportInput!) { createExport(input: $input) { export { id } } }",
      "variables": {
        "input": {
          "planId": "MapPlan:5a0ddee5a6b7d90aecdc2f1d",
          "parameters": {
            "layer": "ORTHOMOSAIC",
            "fileFormat": "GEOTIFF",
            "projection": "EPSG:3857",
            "resolution": 5
          }
        }
      }
    }
  },
  "response": {
    "data": {
      "createExport": {
        "export": {
          "id": "Export:5ab169ed8904ec000136eac9"
        }
      }
    }
  }
}