全部
淘宝客
在线测试
移动/联通/电信话费充值订单佣金查询接口
接口地址: http://api.vv-tool.com/tool/waimai/ph_charge
接口介绍: 可实时查询充值订单的状态,获取订单创建时间,支付时间,充值到账时间,佣金信息等明细数据,点击查看详情
请求方式: GET
返回格式: JSON
接口收费: 联系客服
频率限制: 10 次/秒
请求头参数
参数 | 类型 | 必选 | 值 | 示例 |
---|---|---|---|---|
Authorization | string | 是 | 授权 access_token | Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx |
请求参数
参数 | 类型 | 必选 | 描述 |
---|---|---|---|
order_sn | string | 是 | 订单号 |
start_time | date | 否 | 开始时间,格式 yyyy-MM-dd HH:mm:ss |
end_time | date | 否 | 结束时间,格式 yyyy-MM-dd HH:mm:ss |
query_type | int | 否 | 1-付款时间 2-创建时间 3-更新时间 4-审核时间 默认 1 |
order_status | int | 否 | 订单状态 0-已支付;1 未支付; 2-已成团;3-确认收货;4-审核成功;5-审核失败;6-已经结算;7-非多多进宝商品 |
sid | string | 否 | 自定义跟单参数 |
page | int | 否 | 页码 默认 1 |
pageSize | int | 否 | 每页显示多少 默认 20 最大 100 |
请求代码示例
cURL请求代码示例
curl --location --request GET 'http://api.vv-tool.com/tool/waimai/ph_charge' \
--header 'Authorization: Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx' \
--header 'Cookie: PHPSESSID=mlrg52hblelto9ekbkg4bu9e3g; _csrf=6b534ab0625165d3fbecd264c5c5a7f65b6978f8df475ac9cb24f021bbc7647da%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22K-aT3xz_fPoFcWpVmnHCt8wKSw4_q-Z-%22%3B%7D'
PHP请求代码示例
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'http://api.vv-tool.com/tool/waimai/ph_charge',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx',
'Cookie: PHPSESSID=mlrg52hblelto9ekbkg4bu9e3g; _csrf=6b534ab0625165d3fbecd264c5c5a7f65b6978f8df475ac9cb24f021bbc7647da%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22K-aT3xz_fPoFcWpVmnHCt8wKSw4_q-Z-%22%3B%7D'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
JAVA请求代码示例
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
Request request = new Request.Builder()
.url("http://api.vv-tool.com/tool/waimai/ph_charge")
.method("GET", null)
.addHeader("Authorization", "Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx")
.addHeader("Cookie", "PHPSESSID=mlrg52hblelto9ekbkg4bu9e3g; _csrf=6b534ab0625165d3fbecd264c5c5a7f65b6978f8df475ac9cb24f021bbc7647da%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22K-aT3xz_fPoFcWpVmnHCt8wKSw4_q-Z-%22%3B%7D")
.build();
Response response = client.newCall(request).execute();
响应参数
参数 | 类型 | 描述 |
---|---|---|
code | int | 错误码,0 表示充值到账 ,1 表示订单创建成功等待电信系统执行话费充值 ,2 表示为失败(扣款退回原账户) |
msg | string | 返回码描述 |
msec | int | 接口执行时间 |
time | int | 接口返回时间 |
goods_name | string | 商品名称 |
goods_thumbnail_url | string | 商品图片 |
goods_quantity | long | 商品购买数量 |
order_amount | long | 商品支付金额,单位元 |
sid | string | 自定义参数 |
order_create_time | date | 订单创建时间 |
order_group_success_time | date | 成团时间 |
order_modify_at | date | 最后更新时间 |
order_pay_time | date | 支付时间 |
order_verify_time | date | 审核时间 |
remark | string | 备注(成功无数据,失败则显示错误原因) |
order_sn | string | 订单号 |
order_status | string | 订单状态 0-已支付;1 未支付; 2-已成团(该状态订单创建成功等待电信系统执行话费充值);3-确认收货(充值成功);4-审核成功;5-审核失败;6-已经结算;7-非多多进宝商品 |
order_status_desc | string | 订单状态描述 |
jtk_share_fee | long | 佣金金额 单位元 |
jtk_share_rate | long | 佣金比例 |
withholding_money | int | 该接口扣费金额(点券 1 点券 =1 分) |
返回数据
{
"code": 0,
"msg": "成功",
"msec": 558,
"time": 1612403448,
"data": {
"goods_name": "【话费充值】全国移动联通电信慢充充手机话费72小时到账",
"goods_thumbnail_url": http://t00img.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx,
"goods_quantity": 1,
"order_amount": "93.00",
"sid": "xxx",
"order_create_time": "2021-05-14 13:06:44",
"order_group_success_time": "2021-05-14 13:06:47",
"order_modify_at": "2021-05-14 13:07:48",
"order_pay_time": "2021-05-14 13:06:47",
"order_sn": "210514-06684xxxxxx",
"order_status": 1,
"order_status_desc": "已成团",
"order_verify_time": null,
"jtk_share_fee": "0.93",
"jtk_share_rate": "1.00",
"withholding_money":9700
}
}
响应代码
代码 | 代码描述 | 解决方案 |
---|---|---|
1111 | 订单号错误 | 请输入正确的订单号 |
公共错误码点击查看详情