FlightHub Sync
  1. FlightHub
FlightHub Sync
  • FlightHub
    • FlightFub Webhook
    • ENV
    • Error Code
    • Live stream forwarding
      • Start Stream Forwarding
      • Stop Stream Forwarding
      • Get Stream Forwarding Channel Transcoder
    • Task distribution
      • Get Flight Task Files List
      • Create Flight Task
      • Commands During the Flight Task
      • Flight Task Trajectory Acquisition
      • Project Equipment Topology
      • Get Flight Task Details
    • Get Organization Project List
      GET
    • Get Project Device List
      GET
    • Push Event Notification and Map Annotation
      POST
    • Get Temporary Upload Token
      POST
    • Notify of Route File Upload
      POST
    • Get File Information and Download Address
      GET
  1. FlightHub

Get Organization Project List

GET
/manage/api/v1.0/projects

Request

Query Params
page
string 
required
Example:
1
page_size
string 
required
Example:
10
Header Params
X-Organization-Key
string 
required
Organization-Key
Default:
{{organization_key}}

Request 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 '/manage/api/v1.0/projects?page=1&page_size=10' \
--header 'X-Organization-Key;'

Responses

🟢200成功
application/json
Body
code
integer 
required
Non-zero indicates an exception
message
string 
required
Message prompt
data
object 
required
pagination
object 
required
list
array [object {20}] 
required
Example
{
  "code": 0,
  "message": "OK",
  "data": {
    "pagination": {
      "page": 1,
      "page_size": 10,
      "total": 1
    },
    "list": [
      {
        "name": "c2c_test",
        "introduction": "a",
        "uuid": "93df839d-ae74-4f04-842e-2f1f81c89a66",
        "project_id": "DXXXXX",
        "org_uuid": "105ddd05-34ce-46b6-a872-cb32b8c98f64",
        "status": "project-status-run",
        "c2c_enable": false,
        "c2c_task_enable": false,
        "created_at": 1702498686,
        "updated_at": 1702498686,
        "project_work_center_point": {
          "latitude": 22.906899500237845,
          "longitude": 113.69995967214662
        },
        "project_fast_join": null,
        "project_weather_blocking": {
          "cloud_weather_blocking_status": true,
          "airport_weather_station_blocking_status": true,
          "cloud_weather_blocking_config": {
            "wind_speed_limit": 15,
            "precipitation_limit": 3
          },
          "airport_weather_station_blocking_config": {
            "wind_speed_limit": 12,
            "precipitation_limit": 3
          }
        },
        "project_share_config": {
          "live_disable": false,
          "media_disable": false
        },
        "role": "",
        "organization_user_role": "",
        "organization_user_callsign": "",
        "is_show_project_manage_icon": false,
        "is_show_project_enter_button": false,
        "project_commanders": [
          {
            "project_commander_user_id": "1000000000000000000",
            "project_commander_organization_callsign": "callsign"
          }
        ]
      }
    ]
  }
}
🟠401未授权
Previous
Get Flight Task Details
Next
Get Project Device List
Built with