1. Organize Projects
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
      • Get the list of devices under the organization
        GET
      • Obtain the list of devices under the project
        GET
      • Obtain storage upload credentials for the project
        GET
      • Add personnel to the project
        PUT
    • Device Management
      • Device Management Tutorial
      • Device Model Retrieval
      • HMS Information Retrieval
      • Real-time control command distribution
      • Dock camera switch
      • Aircraft Lens Switching
      • Control acquisition
      • Release control
      • Video transmission clarity settings
      • Custom Network RTK Calibration
    • 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
      • Algorithm parameter introduction
      • Model Reconstruction Error Code
      • Get upload credential
      • Upload callback
      • Get resource details
      • Delete resource
      • Start reconstruction task
      • Stop reconstruction task
      • Get the Model Details
      • Delete Models
  1. Organize Projects

Get the list of projects under the organization

Developing
GET
/openapi/v0.1/project
Get the list of projects under the organization by setting the user key through the X-User-Token parameter in the Header. This interface will return all project lists under the organization corresponding to the user key.
(1). The data.list.uuid in the project list can be used as a parameter to fill in the X-Project-Uuid in authentication authorization.
(2). The data.list.uuid in the project list can be used as a parameter to pass into [Get Device List Under Project] to obtain information about the devices under the project.

Request

Query Params

Header Params

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 --request GET '/openapi/v0.1/project?page=1&page_size=10&q=test&prj_authorized_status=project-status-authorized&usage=simple&sort_column=created_at&sort_type=ASC' \
--header 'X-Request-Id;' \
--header 'X-Language: zh'

Responses

🟢200Success
application/json
Body

Example
{
    "code": 0,
    "message": "OK",
    "data": {
        "list": [
            {
                "name": "c2c_test",
                "introduction": "a",
                "uuid": "93df839d-ae74-4f04-842e-2f1f81c89a66",
                "org_uuid": "105ddd05-34ce-46b6-a872-cb32b8c98f64",
                "created_at": 1702498686,
                "updated_at": 1702498686,
                "project_work_center_point": {
                    "latitude": 22.906899500237845,
                    "longitude": 113.69995967214662
                }
            }
        ]
    }
}
Previous
Organize Project Tutorial
Next
Get the list of devices under the organization
Built with