# 更新商家信息

注意:如果开启了小程序客服之后,配置了消息回调,则微信不会向客服助手发送消息,如果希望不处理客服消息,请参照将消息转发到客服一节,将消息继续转发到客服系统。

# 接口调用请求说明

http请求方式:POST
https://api.weixin.qq.com/shop/account/update_info?access_token=xxxxxxxxx

# 请求参数示例

{
    "service_agent_path": "小程序path",
    "service_agent_phone": "020-888888",
    "service_agent_type": [1,2],

    "default_receiving_address": {
        "receiver_name": "张三",
        "detailed_address": "详细收货地址信息",
        "tel_number": "收货人电话",
        "country": "国家",
        "province": "省份",
        "city": "城市",
        "town": "区县"
    }
}

# 回包示例

{
    "errcode": 0,
    "errmsg":"ok"
}

# 请求参数说明

参数 类型 是否必填 说明
service_agent_path string 小程序path
service_agent_phone string 客服联系方式
service_agent_type enum[] 客服类型,支持多个,0: 小程序客服(会校验是否开启),1: 自定义客服path 2: 联系电话
default_receiving_address AddressInfo 默认退货地址,退货售后超时时,会让用户将货物寄往此地址。
default_receiving_address.receiver_name string 收件人姓名
default_receiving_address.detailed_address string 详细收货地址信息
default_receiving_address.tel_number string 收件人手机号码
default_receiving_address.country string 国家
default_receiving_address.province string
default_receiving_address.city string
default_receiving_address.town string

# 回包参数说明

参数 类型 说明
errcode number 错误码
errmsg string 错误信息