文档首页/ ISDP/ API参考/ API接口/ 任务管理/ 作业标准管理/ 查询门店/人员巡检次数排名(API名称:queryInspectTimesRank)
更新时间:2024-04-26 GMT+08:00
分享

查询门店/人员巡检次数排名(API名称:queryInspectTimesRank)

功能介绍

查询门店/人员巡检次数排名

相关接口

接口名称

调用说明

获取Token

调用该接口获取到Token,再调用其他接口时,需要在请求消息头中添加“Authorization”,其值即为Token。

URL

请求方式

HTTPS地址

服务架构

消息体类型

POST

https://isdp+域名/openapi/v1/hwRetailTask/ queryInspectTimesRank

OpenAPI

application/json

请求头

KEY

VALUE

是否必填

描述

Content-Type

application/json

Authorization

bearer ${access_token}

bearer +“ ”+5.2.1中获取的access_token的值

请求参数

参数

类型

是否必填

描述

pageStart

int

可选

当前页码:从0开始

pageSize

int

可选

每页数量:默认15条,

最多100条

imageLevel

String

必选

全球形象等级

region

String

可选,单选

不选时默认全国

代表处

taskScene

String

必选

任务场景

position

String

可选

岗位

startDate

date

必选

开始时间

endDate

date

必选

结束时间

queryType

int

必选

查询类型:0-门店;1-人员

queryFlag

int

可选

0:降序;1:升序。默认降序

响应参数

字段名

数据类型

字段名称

stateCode

String

响应状态码:0-成功;其他-失败

errorMessage

String

响应描述

result

Object

响应结果内容data、分页数据

result出参:

字段名

数据类型

字段名称

pos

int

当前页:从0开始

total_count

int

总数量

data

List<Object>

响应结果内容data

data的参数:(入参queryType为0时返回门店信息)

字段名

数据类型

字段名称

storeName

String

门店名称

storeId

String

门店id

storeCode

String

门店编码

times

int

次数

data的参数:(入参queryType为1返回人员)

字段名

数据类型

字段名称

assignedUserName

String

执行人名称

assignedUserId

String

执行人id

times

int

次数

请求示例

{
    "pageStart": 0,
    "pageSize": 3,
    "imageLevel": "智能生活馆",
    "taskScene": "【现场巡检2.0】-智能生活馆",
    "region": [
        "江苏-生活馆"
    ],
    "startDate": "2000-04-30",
    "endDate": "2030-04-30",
    "queryType": 1,
    "queryFlag": 0
}

响应示例

{
    "stateCode": "0",
    "errorMessage": "成功",
    "result": {
        "pos": 0,
        "totalCount": 10,
        "data": [
            {
                "assignedUserId": "102819",
                "assignedUserNam": "陈宇光",
                "times": 3
            },
            {
                "assignedUserId": "122054",
                "assignedUserNam": "谢泽炜",
                "times": 2
            },
            {
                "assignedUserId": "105794",
                "assignedUserNam": "陈任佳",
                "times": 2
            }
        ]
    }
}

相关文档