卖家拒绝退货
卖家拒绝退货,目前仅支持天猫退货。
1.请求参数:
请求URL:
POST https://kf.fw199.com/gateway/taobao/refund/returngoods/refuse
参数名 | 类型 | 必须 | 示例值 | 说明 |
---|---|---|---|---|
appid | String | true | uwkahf@jfs92 | 合作伙伴AppId |
timestamp | String | true | 1633618722 | 当前时间戳 |
tb_seller_nick | String | true | kingdo | 淘宝卖家店铺登录账号,非店铺名称 |
sign | String | true | 999de41d862efaa6f1084ead3b3ba480 | 如何计算生成见示例代码 |
refund_id | Number | true | 1232312 | 退款编号 |
refund_phase | String | true | onsale 或者 aftersale | 退款服务状态,售后或者售中 |
refund_version | Number | true | 12312312 | 退款版本号 |
refuse_proof | baes64编码 | true | 图片的baes64编码 | 拒绝退货凭证图片,必须图片格式,大小不能超过5M |
refuse_reason_id | Number | false | 999 | 拒绝原因编号,会提供拒绝原因列表供选择 |
sysid | String | false | 100 | 代表不同的应用,具体请咨询客服,否则接口会调用失败 |
2. 请求示例代码(Java)
@Test
public void TaoBaorefundreturnRefuse() throws Exception {
//业务参数
Map<String, String> data = new HashMap<String, String>();
data.put("appid", Config.AppId);
Long timestamp = System.currentTimeMillis() / 1000;
data.put("timestamp", timestamp.toString());
data.put("tb_seller_nick", Config.TBSellerNick);
data.put("refund_id", "132020568245563058");
data.put("refund_phase", "aftersale");
data.put("refund_version", "3213432223");
String base64ImageLogo = Utils.getBase64ImageFromBinary("/Users/tony/MyDocument/aaa.jpg");
data.put("refuse_proof", base64ImageLogo);
// data.put("sysid", "103");
// 签名
data.put("sign", Utils.Sign(data,Config.AppSecret));
// 调用服务API
doHttpRequest(Config.TaoBaorefundreturnRefuseUrl ,data);
}
3. 返回结果
返回结果如下
{
"code": 0,
"message": "ok",
"data": {
"result": true
},
"trace_id": ""
}
说明: code为0表示成功,非0为失败,message会包含失败原因, 结果以result为准。
文档更新时间: 2023-11-15 15:57 作者:admin