Zone: list

Overview

Return a collection of zone that match the API request parameters.

 

API URL

/api/zone/query

 

HTTP Method

GET

 

URL Parameters

Name Type Required  Description

access_token or

user_access_token

String Requires Specify the API access_token of the account or the user_access_token obtained after the user logged in.

 

Response

An HTTP code of 200 is responded for each successful data requests. The message body contains a JSON object listing all zone.

 

Examples

{

    "code": 0,

    "msg": "Successful operation",

    "msg_en": "Successful operation",

    "data": [
        {
            "id": 1,
            "name": "Zone 1",
            "planegraph": "183",
            "x": 0.00523,
            "y": 0.00523,
            "sort": 9,
            "create_time": 0,
            "update_time": 0,
            "3d_x": 15,
            "3d_y": 9.147,
            "pic_name": "1644200442.jpg"
       },

       ......

   ],
   "exe_time": "0.002053"

}