全部
淘宝客
在线测试
美团联盟闪购订单号查询
接口地址: http://api.vv-tool.com/tool/waimai/meituan_sg_orderid
接口介绍: 美团联盟闪购订单查询点击查看详情
请求方式: POST
返回格式: JSON
接口收费: 联系客服
频率限制: 10 次/秒
请求头参数
参数 | 类型 | 必选 | 值 | 示例 |
---|---|---|---|---|
Authorization | string | 是 | 授权 access_token | Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx |
请求参数
参数 | 类型 | 必选 | 描述 |
---|---|---|---|
orderid | string | 是 | 订单号 |
请求示例
orderid:123456789
请求代码示例
cURL请求代码示例
curl --location --request POST 'http://api.vv-tool.com/tool/waimai/meituan_sg_orderid' \
--header 'Authorization: Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx' \
--form 'orderid="123456789"'
PHP请求代码示例
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'http://api.vv-tool.com/tool/waimai/meituan_sg_orderid',
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('orderid' => '123456789'),
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx'
),
));
$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("orderid","123456789")
.build();
Request request = new Request.Builder()
.url("http://api.vv-tool.com/tool/waimai/meituan_sg_orderid")
.method("POST", body)
.addHeader("Authorization", "Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx")
.build();
Response response = client.newCall(request).execute();
响应参数
参数 | 类型 | 描述 |
---|---|---|
code | int | 错误码 0 为成功 |
msg | string | 返回码描述 |
msec | int | 接口执行时间 |
time | int | 接口返回时间 |
order | object | 订单 |
L orderid | string | 订单号 |
L uid | string | H5 联合合作 ID |
L sid | string | 合作方用户唯一标识 |
L total | string | 订单总价 |
L direct | string | 订单付款金额 |
L quantity | string | 订单含券数量 |
L dealid | string | 团购项目 ID |
L smstitle | string | 团购项目短标题 |
L paytime | string | 付款时间 |
L modtime | string | 更新时间 |
L sign | string | 双方的安全验证码 |
L status | string | 订单状态(1 已付款 8 已完成 9 已退款) (外卖订单独有) |
coupon | object | 订单状态(美团券消费) |
L orderid | string | 订单号 |
L sequence | string | 券状态 1, 3, 4 (表示第 1/3/4 张券被消费了) |
L usetime | string | 使用时间 |
L price | string | 券价格 |
L profit | string | 返佣金额 |
refund | string | 美团券退款 |
L orderid | string | 订单号 |
L quantity | string | 退券数量 |
L refundtime | string | 退券时间 |
L money | string | 券价格 |
返回数据
{
"code": 0,
"msg": "成功",
"msec": 558,
"time": 1612403448,
"data": {
"coupon": [
{
"sequence": "1",
"orderid": "47843041069940872",
"price": "58.23",
"profit": "2.33",
"usetime": "1603976303"
}
],
"order": {
"smstitle": "每日优鲜(霍营星店)",
"uid": "70690",
"total": "89.50",
"quantity": "1",
"orderid": "47843041069940872",
"dealid": "4784304",
"modtime": "1603976336",
"direct": "58.23",
"paytime": "1603976303",
"sid": "123456",
"status": 9
},
"refund": [
{
"quantity": "1",
"refundtime": "1603976303",
"money": "58.23",
"orderid": "47843041069940872",
"profit": "2.33"
}
]
}
}
响应代码
代码 | 代码描述 | 解决方案 |
---|
公共错误码点击查看详情