DJI Delivery Sync
  1. Phase two
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 two

Get detail of a single route

GET
/map/sdk/v1/groups/{{group_id}}/waylines/{{wayline_id}}

Request

Path 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 '/map/sdk/v1/groups/{{group_id}}/waylines/{{wayline_id}}'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 0,
    "message": "",
    "data": {
        "wayline_global_info": {
            "wayline_id": "string",
            "wayline_type": "string",
            "create_time:": 0,
            "update_time:": 0,
            "name": "string",
            "distance": 0,
            "duration": 0,
            "fly_to_wayline_mode": "string",
            "finish_action": "string",
            "rc_lost_action": "string",
            "turn_mode": "string"
        },
        "points": [
            {
                "latitude": 0,
                "longitude": 0,
                "speed": 0,
                "turn_mode": "string",
                "height": 0
            }
        ]
    }
}
Modified at 2024-06-25 11:59:09
Previous
Get route list
Next
Get location list
Built with