淘宝客订单号检测
最后更新于:2022-04-02 08:18:13
## 淘宝客订单号检测
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/03/a9/03a9c7ff7987e6ee2798dce7ad8878cf_200x200.png)
> 可以检测淘宝订单号是否使用淘客下单,避免商家损失佣金
## 接口费用( [点击购买](https://market.topthink.com/product/306))
> 最低 0.016元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/taobaoke/check_order
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| orderNo| string | 是 | 订单号 |
### 返回`data`参数
| 名称 | 类型 | 说明 |
| --- | --- | --- |
| taoke | bool| true:淘客订单 false:非淘客订单或订单失效 |
| remark| string |说明 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->taobaokeCheckOrder()
->withOrderNo('淘宝订单号')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"taoke": true,
"remark": "请注意,该订单为淘客订单",
"hasNextPage": "1",
"orders": []
}
]
}
~~~
';