全部
淘宝
拼多多
抖音
京东
快手
当当
1688
淘工厂
小红书
有赞
微店
在线测试
通过面单号查询面单信息
接口地址: http://api.vv-tool.com/tool/erps/pdddzmd
接口介绍: 通过面单号查询面单信息点击查看详情
必须用户授权 : 需要用户的授权,才能拿到被授权的数据
请求方式: POST
返回格式: JSON
接口收费: 扣账户余额
频率限制: 10 次/秒
请求头参数
参数 | 类型 | 必选 | 值 | 示例 |
---|---|---|---|---|
Authorization | string | 必填 | 授权 access_token | Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx |
请求参数
参数 | 类型 | 必选 | 描述 |
---|---|---|---|
owner_id | STRING | 必填 | 店铺 owner_id |
param_list | OBJECT[] | 必填 | 系统自动生成 |
-object_id | STRING | 必填 | 请求 id |
-waybill_code | STRING | 必填 | 电子面单号 |
-wp_code | STRING | 必填 | 快递公司 code |
vvtype | INT | 非必填 | 增强版 1,不传默认 1,普通版 2,专业版 3 |
请求示例
{
"owner_id": "123",
"param_list": [
{
"object_id": "1",
"waybill_code": "1",
"wp_code": "SF"
}
]
}
请求代码示例
cURL请求代码示例
curl --location --request POST 'http://api.vv-tool.com/tool/erps/pdddzmd' \
--header 'User-Agent: Apipost client Runtime/+https://www.apipost.cn/' \
--header 'Authorization: Bearer XXXXXXXXXXXXXXXXXXXX' \
--header 'Content-Type: application/json' \
--data '{
"owner_id": "123",
"param_list": [
{
"object_id": "1",
"waybill_code": "1",
"wp_code": "SF"
}
]
}'
PHP请求代码示例
// Generated by ApiPost: https://www.apipost.cn/
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://api.vv-tool.com/tool/erps/pdddzmd');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "{\n\t\"owner_id\": \"123\",\n\t\"param_list\": [\n\t\t{\n\t\t\t\"object_id\": \"1\",\n\t\t\t\"waybill_code\": \"1\",\n\t\t\t\"wp_code\": \"SF\"\n\t\t}\n\t]\n}");
$headers = array();
$headers[] = 'User-Agent: Apipost client Runtime/+https://www.apipost.cn/';
$headers[] = 'Authorization: Bearer XXXXXXXXXXXXXXXXXXXX';
$headers[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
JAVA请求代码示例
// Generated by ApiPost: https://www.apipost.cn/
Request request = Request.Post("http://api.vv-tool.com/tool/erps/pdddzmd");
String body = "{\n\t\"owner_id\": \"123\",\n\t\"param_list\": [\n\t\t{\n\t\t\t\"object_id\": \"1\",\n\t\t\t\"waybill_code\": \"1\",\n\t\t\t\"wp_code\": \"SF\"\n\t\t}\n\t]\n}";
request.bodyString(body,ContentType.APPLICATION_JSON);
request.setHeader("User-Agent", "Apipost client Runtime/+https://www.apipost.cn/");
request.setHeader("Authorization", "Bearer XXXXXXXXXXXXXXXXXXXX");
request.setHeader("Content-Type", "application/json");
HttpResponse httpResponse = request.execute().returnResponse();
System.out.println(httpResponse.getStatusLine());
if (httpResponse.getEntity() != null) {
String html = EntityUtils.toString(httpResponse.getEntity());
System.out.println(html);
}
响应参数
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
pdd_waybill_query_by_waybillcode_response | OBJECT | response | |
modules | OBJECT[] | 查询返回值 | |
waybill_cloud_print_response | OBJECT | 面单查询结构体 | |
object_id | STRING | 请求 id | |
waybill_code | STRING | 面单号 | |
withholding_money | INTEGER | 该接口扣费金额(点券) |
返回数据
{
"code": 0,
"msg": "操作成功",
"msec": 3860,
"time": 1638433143,
"data": {
{
"pdd_waybill_query_by_waybillcode_response": {
"modules": [
{
"waybill_cloud_print_response": {
"object_id": "str",
"waybill_code": "str"
}
}
]
}
},
"withholding_money": 1
}
}
响应代码
代码 | 代码描述 | 解决方案 |
---|---|---|
0 | 成功 | |
100 | 请求参数错误 | 检查您的请求参数是否正确 |
101 | 请求超时,请重试 | 检查您的网络情况或者联系客服解决 |
103 | 旺旺账号不存在 | 检查您输入的旺旺号是否正确 |
200 | 系统错误,请联系客服 | 检查您的接口地址填写是否正确,其他问题联系客服解决 |
203 | 暂不支持当前接口 | |
204 | 请求异常:无该接口权限,请前往官网开通正式接口。 | 前往官网开通该接口权限 |
204 | 请求异常:API 调用次数不足,请前往网站兑换次数。 | 前往官网充值该接口调用次数 |
302 | 未授权店铺 | 根据返回链接进行扫码授权 |