接口使用场景等说明:淘宝客处罚订单查询可以用于查询被处罚的订单,支持pub_id、site_id、adzone_id、relation_id 多维度查询处罚订单
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/tbk/orderpunish | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
relation_id | Number | 否 | 2222 | 渠道关系id |
tb_trade_id | Number | 否 | 258897956183171983 | 子订单号 |
page_size | Number | 否 | 1 | 页大小 |
page_no | Number | 否 | 10 | 页码 |
span | Number | 否 | 10 | 查询时间跨度,不超过30天,单位是天 |
start_time | Date | 否 | 2018-11-11 00:01:01 | 查询开始时间,以taoke订单创建时间开始 |
adzone_id | Number | 否 | 123 | pid中的第三段,adzoneId |
site_id | Number | 否 | 123 | pid中的第二段,siteId |
sessionkey | String | 否 | 7002 | 多用户专用。如果您的会员卡是多用户版订单查询接口,若要查不同的帐号,请提供该帐号授权的sessionkey值 |
account_id | String | 否 | 联盟号id | 会员中心有多个授权时,用本参数指定要查询哪一个联盟号id下的订单,联盟号ID请到会员中心授权页查看 |
GET/POST http://api.veapi.cn/tbk/orderpunish?vekey=xxxx&start_time=2019-05-15+21:00:47&tb_trade_id=441183720754759222
$api="http://api.veapi.cn/tbk/orderpunish?vekey=xxxx&start_time=2019-05-15+21:00:47&tb_trade_id=441183720754759222"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api); //curl_setopt($ch, CURLOPT_POST, true); //POST方式时启用 //curl_setopt($ch, CURLOPT_POSTFIELDS, $postData ); //POST方式时传参 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true ); //返回数据流,不直接输出 curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); //使用gzip压缩传输让访问更快 curl_setopt($ch, CURLOPT_TIMEOUT, 6); //允许执行的最长秒数。这里设定6S curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); $result = curl_exec($ch); $info = curl_getinfo($ch); curl_close($ch); echo $result; //返回值
import cn.hutool.http.HttpResponse; import cn.hutool.http.HttpRequest; public class testGetParam { public static void main(String[] args) { // API网址 String url = "http://api.veapi.cn/tbk/orderpunish?vekey=xxxx&start_time=2019-05-15+21:00:47&tb_trade_id=441183720754759222"; // JDK 8u111版本后,若目标页面为HTTPS协议,请启用proxy用户密码鉴权 //System.setProperty("jdk.http.auth.tunneling.disabledSchemes", ""); // 发送请求 String result = HttpRequest.get(url) .timeout(10000)//设置超时,毫秒 .execute().body(); System.out.println(result); } }
import requests # 要访问的API网页 target_url = "http://api.veapi.cn/tbk/orderpunish?vekey=xxxx&start_time=2019-05-15+21:00:47&tb_trade_id=441183720754759222" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 示例值 | 描述 |
---|---|---|---|
union_id | String | 淘宝联盟unionid(该字段不再支持) | |
special_id | Number | 会员运营id(该字段不再支持) | |
relation_id | Number | 122344 | 渠道关系id |
settle_month | Number | 201812 | 结算月份 |
punish_status | String | 0 | 处罚状态。0 冻结,1 解冻 |
violation_type | String | 店铺淘宝客 | 处罚类型,目前包括 1:店铺淘宝客 2:订单虚假交易 |
tk_trade_create_time | String | 2018-11-11 00:01:01 | 淘客订单创建时间 |
tb_trade_id | Number | 581552366 | 子订单号 |
tb_trade_parent_id | Number | 父订单号(该字段不再支持) | |
tk_adzone_id | Number | 1212 | pid里的adzoneid |
tk_site_id | Number | 1212 | pid里的siteid |
tk_pub_id | Number | 114469792 | pid里的pubid |
page_no | Number | 1 | 翻页的pageno |
page_size | Number | 10 | 翻页的pagesie |
total_count | Number | 100 | 一共能查询出来的结果总数 |
biz_error_desc | String | 没有获取到memberid | 业务出错的描述 |
biz_error_code | Number | 103 | 业务出错的状态码 |
result_msg | String | ok | 执行结果 |
result_code | Number | 200 | 执行结果状态码 |
{ "error": "0", "msg": "处罚订单查询成功!订单无处罚信息!", "page_no": 1, "page_size": 100, "total_count": 1, "data": { "result": [ { "relation_id": 122344, "settle_month": 201812, "punish_status": "1", "violation_type": "2", "tk_trade_create_time": "2018-11-11 00:01:01", "tb_trade_id": 258897956183171983, "tk_adzone_id": 1212, "tk_site_id": 1212, "tk_pub_id": "1212" } ] } }