# 设置配送方式
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/product/shipmethods/set?access_token=xxxxxxxxx
# 请求参数示例
{
"supported_shipping_methods":{
"express":0,
"same_city":0,
"pickup":0
}
}
# 回包示例
{
"errcode" : 0,
"errcode" : ""
}
# 请求参数说明
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
supported_shipping_methods.express | number | 是 | 是否开启快递配送 |
supported_shipping_methods.same_city | number | 是 | 是否开启同城配送 |
supported_shipping_methods.pickup | number | 是 | 是否开启线下自提 |
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | string | 错误码 |
errmsg | string | 错误信息 |
# 返回码
返回码 | 错误类型 |
---|---|
-1 | 系统异常 |
-2 | token太长 |
500001 | 无配送方式 |
500002 | 无同城发货地址 |
500003 | 无线下自提地址 |