删除线索列表

接口说明: 批量删除业绩中的线索

请求方式: POST(HTTPS)

请求地址: https://api.xinrenxinshi.com/v5/statistic/performance/clue/delete

请求Header:

key value
access_token 获取的access_token的实际值

Query参数:

key value
sign 签名值

Body参数:

参数 类型 必传(Y/N) 说明
clueInfoIdList List<Long> Y 需要删除的系统线索id,每批次不超过1000个,对应的是线索列表中的clueInfoId
timestamp Integer Y 请求时间戳(精确到毫秒)

返回结果:

参数 类型 必传(Y/N) 说明
errcode Integer Y 错误码枚举值,0:成功,其他值为失败
errmsg String Y 结果描述
data Integer Y 删除成功的线索数量

请求示例(HTTPS):

https://api.xinrenxinshi.com/v5/statistic/performance/clue/delete?sign=tAMMvw%2FiNEMLd3jf4i6U510aZ1c%3D

请求Body示例:

{
  "clueInfoIdList": [
    1199,
    1200,
    1201
  ],
  "timestamp": 1721897651490
}

SDK请求示例(java):

StatisticsClubInfoDeleteRequest request = new StatisticsClubInfoDeleteRequest(access_token());
List<Long> clueInfoIdList= Lists.newArrayList();
clueInfoIdList.add(1199L);
clueInfoIdList.add(1200L);
clueInfoIdList.add(1201L);
request.setClueInfoIdList(clueInfoIdList);
OpenapiResponse<Integer> integerOpenapiResponse = XrxsStatisticService.deleteClueInfoList(request);

响应示例

{
  "errcode": 0,
  "errmsg": "成功",
  "data": 3
}
2024 © 企家有道网络技术(北京)有限公司版权所有@京ICP备15035315号 all right reserved,powered by Gitbookupdate by: 2024-07-30 10:05:08

results matching ""

    No results matching ""