DJI Delivery Sync
  1. Phase one
DJI Delivery Sync
  • Authentication instructions and webhook details
  • HMS Code Details
  • Phase one
    • Get device list
      GET
    • Get the device topology status, the aircraft and remote control form the topology
      GET
    • Get device properties
      GET
    • Enable device live streaming and obtain the streaming URL
      POST
    • Get device task list
      GET
  • Phase two
    • Get route list
      GET
    • Get detail of a single route
      GET
    • Get location list
      GET
    • Create location
      POST
    • Delete location
      DELETE
    • Device execution command
      POST
    • Query device execution command status
      GET
  • Phase three
    • Create task
      POST
    • Edit task
      PUT
    • Delete task
      DELETE
    • Start task
      POST
    • Start stream forwarding
      POST
    • Stop stream forwarding
      DELETE
  1. Phase one

Get device task list

GET
/task/sdk/v1/groups/{{group_id}}/tasks

Request

Path Params

Query 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 -g --request GET '/task/sdk/v1/groups/{{group_id}}/tasks?start_time&end_time&page&page_size'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 0,
    "message": "",
    "data": {
        "pagination": {
            "page": 0,
            "page_size": 0,
            "total": 0
        },
        "list": [
            {
                "id": "string",
                "task_name": "string",
                "group_id": "string",
                "code": 0,
                "create_time": 0,
                "created_nickname": "string",
                "start_time": 0,
                "status": 0,
                "update_time": 0,
                "end_time": 0,
                "estimate_time": 0,
                "remark": "string",
                "sn": "string",
                "current_action_id": "string",
                "current_stage_id": "string",
                "elements": [
                    {
                        "id": "string",
                        "name": "string",
                        "relation_type": "string"
                    }
                ],
                "missions": [
                    {
                        "mission_id": "string",
                        "mission_name": "string",
                        "estimate_time": 0,
                        "origin_mission_id": "string",
                        "total_estimate_time": 0
                    }
                ],
                "stages": [
                    {
                        "stage_id": "string",
                        "total_estimate_time": 0,
                        "actions": [
                            {
                                "action_id": "string",
                                "action_type": 0,
                                "code": 0,
                                "estimate_time": 0,
                                "start_time": 0,
                                "finish_time": 0,
                                "progress": {},
                                "status": 0,
                                "seq": 0,
                                "gateway_sn": "string",
                                "operated_nickname": 0
                            }
                        ]
                    }
                ]
            }
        ]
    }
}
Modified at 2024-06-25 11:59:09
Previous
Enable device live streaming and obtain the streaming URL
Next
Get route list
Built with