Skip to content

电能表删除

接口链接

URL地址:http://api2.tqdianbiao.com/Api_v2/ele_meter/delete

接口参数

字段名变量名必填类型描述
授权码auth_codeString(32)系统为使用区域分配的授权码,在后台配置页面获取
时间戳timestampString(10)自1970年1月1日(08:00:00 GMT)至当前时间的总秒数
请求内容request_contentString传入由采集器号,表地址组成的键值对列表,删除指定的电能表信息
签名signString(32)通过签名算法计算得出的签名值,详见签名生成算法

请求示例

json
{
  "auth_code": "37577f8fb62a7b14ba55cc6faec5a142",
  "timestamp": "1586740681",
  "request_content": [
    {"cid": "19020618114", "address": "000066660942"},
    {"cid": "19020618114", "address": "0000666609"},
    {"cid": "1902061811", "address": "000066660942"},
    {"cid": "12345678901", "address": "000066660942"},
    {"cid": "11335577990", "address": "000066660942"}
  ],
  "sign": "fee536cf6a37a200d6761df04f5bf368"
}

返回结果

字段名变量名必填类型描述
返回状态码statusStringSUCCESS/FAIL,此字段是通信标识
时间戳timestampString(10)自1970年1月1日(08:00:00 GMT)至当前时间的总秒数
回复内容response_contentString详见response_content字段说明
签名signString(32)通过签名算法计算得出的签名值,详见签名生成算法
出错原因error_msgString当返回状态码为"FAIL"时,返回信息为错误原因

返回示例

json
{
  "status": "SUCCESS",
  "timestamp": "1586744791",
  "response_content": [
    {"model":"154","status":"SUCCESS","cid":"19020618114","address":"000066660942"},
    {"status":"FAIL","error_msg":"只支持12/14位表号","cid":"19020618114","address":"0000666609"},
    {"status":"FAIL","error_msg":"只支持11/12位采集器号","cid":"1902061811","address":"000066660942"},
    {"status":"FAIL","error_msg":"采集器未注册","cid":"12345678901","address":"000066660942"},
    {"status":"FAIL","error_msg":"采集器未注册","cid":"11335577990","address":"000066660942"}
  ],
  "sign": "d0442d8cd04d85221bc940e7a5a12c35",
  "error_msg": "授权码错误"
}

回复内容response_content字段说明

字段名变量名必填类型描述
采集器号cidString(12)采集器号,4G、NB设备采集器号与表号一致
电表地址addressString(12)电能表表地址
删除状态statusString电表删除结果状态码,"SUCCESS", "FAIL"
错误原因error_msgString电表删除状态码不是"SUCCESS"时,返回信息为错误原因,如"只支持12/14位表号","只支持11/12位采集器号","采集器未注册"等

接口测试工具