1. Device Management
NEW FlightHub 2 OpenAPI V1.0
  • Root Directory
    • authentication
      • Authentication Tutorial
    • System Service
      • Query FlightHub 2 system status
    • Organize Projects
      • Organize Project Tutorial
      • Get the list of projects under the organization
      • Get the list of devices under the organization
      • Obtain the list of devices under the project
      • Obtain storage upload credentials for the project
      • Add personnel to the project
    • Device Management
      • Device Management Tutorial
      • Device Model Retrieval
        GET
      • HMS Information Retrieval
        GET
      • Real-time control command distribution
        POST
      • Dock camera switch
        POST
      • Aircraft Lens Switching
        POST
      • Control acquisition
        POST
      • Release control
        DELETE
      • Video transmission clarity settings
        PUT
      • Custom Network RTK Calibration
        POST
    • Livestream Management
      • Livestream Management Tutorial
      • Livestream Push
        • Start livestream
      • Bypass Streaming
        • Stream forwarding error code
        • Create Stream Forwarder
        • Enable/Disable stream forwarder
        • Get stream transcoder list
        • Delete stream forwarder
    • Task Management
      • Task Management Tutorial
      • Create Flight Task
      • Updated flight task status
      • Obtain flight task list
      • Obtain media resources generated by the Flight task
      • Obtain Flight task trajectory information
      • Obtain Flight task information
    • Flight Route Management
      • Flight Route Management Tutorial
      • Flight Route Upload Completion Notification
      • Get the list of flight routes under the project
      • Get flight route details
    • Model Management
      • Model Management Tutorial
      • Model reconstruction coordinate system
      • Get the list of models under the project
      • Get Model Details
      • Model reconstruction
    • Annotation Management
      • Annotation Management Tutorial
      • Create map annotation
    • Open modeling
      • Open modeling tutorial
      • Model Reconstruction Error Code
      • Release Notes
      • Algorithm parameter introduction
      • Get resource details
      • Get Details of Models Currently Being Reconstructed
      • Get upload credential
      • Upload callback
      • Delete resource
      • Start reconstruction task
      • Stop reconstruction task
      • Get the Model Details
      • Delete Models
  • Schemas
    • 默认目录
      • 公共结构
    • 硬件设备
    • 实时应用
    • real-time application
    • Root Table of Contents
      • Default Table of Contents
        • Public Structure
      • Hardware device
        • Dock 3
        • Matrice 4D Series
        • Dock 1
        • Matrice 30 Series
        • Dock 2
        • Matrice 3D Series
        • DJI RC Plus 2
        • Mavic 3 Enterprise Series
        • DJI RC Pro Enterprise
        • Matrice 300 RTK
        • Matrice 350 RTK
        • Matrice 4 Series
        • DJI Smart Controller Enterprise
        • DJI RC Plus
      • 实时应用
      • real-time application
        • schema_option_rmtp
        • schema_option_gb28181
        • task_repeat_option_relative_monthly
        • task_repeat_option_absolute_monthly
        • task_repeat_option_weekly
        • task_repeat_option_daily
  1. Device Management

Aircraft Lens Switching

Developing
POST
/openapi/v0.1/device/change-lens
Supports switching of aircraft camera lenses, allowing for switching between wide-angle, zoom, and infrared.
You need to call the Control Access interface to obtain control of the aircraft before switching the aircraft lens.
The camera_index and lens_type information can be obtained from the data.list.drone:.camera_list in the device list interface under the organization.

Request

Header Params

Body Params application/json

Example
{
    "sn": "1581F6Q8D242100CPWEK",
    "camera_index": "81-0-0",
    "lens_type": "ir"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/openapi/v0.1/device/change-lens' \
--header 'X-Request-Id;' \
--header 'X-Language: zh' \
--header 'X-Project-Uuid: {{X-Project-Uuid}}' \
--header 'Content-Type: application/json' \
--data '{
    "sn": "1581F6Q8D242100CPWEK",
    "camera_index": "81-0-0",
    "lens_type": "ir"
}'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "code": 0,
    "message": "OK"
}
Modified at 2025-02-24 12:14:51
Previous
Dock camera switch
Next
Control acquisition
Built with