全部
电子面单
物流轨迹
物流发货
在线测试
获取商家订购时长
接口地址: http://api.vv-tool.com/tool/accounts/vcsi
接口介绍: 查询 erp 应用订购的时间,订购的关系 点击查看详情
请求方式: POST
返回格式: JSON
接口收费: 扣账户余额
频率限制: 10 次/秒
请求头参数
参数 | 类型 | 必选 | 值 | 示例 |
---|---|---|---|---|
Authorization | string | 是 | 授权 access_token | Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx |
请求参数
参数 | 类型 | 必选 | 描述 |
---|---|---|---|
nick | string | 是 | 掌柜旺旺号(卖家名称 seller_nick,传其他无效) |
vvtype | int | 否 | 普通版 1,不传默认 1,增强版 2,增强版的需要传参 2,标准版 3,需要标准版的传 3 |
请求示例
nick:tbtest110
请求代码示例
cURL请求代码示例
curl --location --request POST "http://api.vv-tool.com/tool/erps/subscribe" \
--header "Authorization: Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx" \
--header "Cookie: __yjs_duid=1_dee3bfba5b90592372d209eda95c772a1616035269331" \
--form "nick="tbtest110""
PHP请求代码示例
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "http://api.vv-tool.com/tool/erps/subscribe",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => array("nick" => "tbtest110"),
CURLOPT_HTTPHEADER => array(
"Authorization: Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx",
"Cookie: __yjs_duid=1_dee3bfba5b90592372d209eda95c772a1616035269331"
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
JAVA请求代码示例
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = new MultipartBody.Builder().setType(MultipartBody.FORM)
.addFormDataPart("nick","tbtest110")
.build();
Request request = new Request.Builder()
.url("http://api.vv-tool.com/tool/erps/subscribe")
.method("POST", body)
.addHeader("Authorization", "Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx")
.addHeader("Cookie", "__yjs_duid=1_dee3bfba5b90592372d209eda95c772a1616035269331")
.build();
Response response = client.newCall(request).execute();
响应参数
参数 | 类型 | 描述 |
---|---|---|
code | int | 错误码 0 为成功 |
msg | string | 返回码描述 |
msec | int | 接口执行时间 |
time | int | 接口返回时间 |
time | int | 接口返回时间 |
start_date | int | 订购开始时间。格式:yyyy-MM-dd HH:mm:ss |
end_date | int | 订购结束时间。格式:yyyy-MM-dd HH:mm:ss |
withholding_money | int | 该接口扣费金额(点券) |
返回数据
{
"code": 0,
"msg": "操作成功",
"msec": 1060,
"time": 1620630684,
"data": {
"end_date": "2021-05-24 00:00:00",
"start_date": "2021-05-09 00:00:00",
"status": "subscribeUser",
"version_no": 1,
"withholding_money": 0
}
}
错误码 点击查看详情:查看