获取地图文件列表

更新时间:2023-06-20 14:54:04

本文介绍获取地图文件列表的 API。

接口描述

根据文件类型分页获取地图文件列表。分页页码不得小于 1,分页页面大小最大不超过 1000,超过 1000 只取 1000 条。

接口地址

GET: /v1.0/users/sweepers/file/{device_id}/list

请求参数

参数名类型参数位置是否必填说明
device_idStringuritrue设备 ID
file_typeStringquerytrue文件类型。
  • pic:单地图
  • collect_recode:多地图
start_timeIntegerqueryfalse开始时间戳
end_timeIntegerqueryfalse结束时间戳
page_noIntegerquerytrue分页页码,不得小于 1
page_sizeIntegerquerytrue分页页面大小,上限为 1000 条

返回参数

参数名类型说明
resultSweeperCleaningResultVO文件信息对象

result 说明

参数名类型说明
datasList清扫记录文件对象列表
total_countLong总条数
has_moreBoolean是否有下一页

datas 说明

参数名类型说明
idLong文件记录 ID
extendString文件扩展信息
timeInteger文件生成时间戳
file_nameString文件名称

请求示例

GET: /v1.0/users/sweepers/file/6c6561cfb316df6e7a****/list?fileType=pic&pageNo=1&pageSize=10

返回示例

{
    "result": {
        "datas": [
            {
                "extend": "yxzne56c96fb00522aa7_1639211017_1640779297_1640779735_6_****.txt",
                "id": 14428924,
                "time": 1640779772
            },
            {
                "extend": "yxzne56c96fb00522aa7_1639211017_1640414644_1640416159_17_****.txt",
                "id": 14272580,
                "time": 1640416221
            }
        ],
        "total_count": 2,
        "has_more": false
    },
    "t": 1641882023112,
    "success": true
}

错误码

参考 错误码