# Get merchant information
# Dxplaination of Interface Call Request
http请求方式:POST
https://api.weixin.qq.com/shop/account/get_info?access_token=xxxxxxxxx
# Example of request parameters
{
}
# Examples of back-up
{
"errcode": 0,
"data": {
"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": "乡镇,选填"
}
}
}
# Dxplaination of request parameters
nothing
# Dxplaination of callback parameters
parameter | type | Introductions |
---|---|---|
errcode | number | Error code |
errmsg | string | Error message |
data.service_agent_path | string | Customer Service Address |
data.service_agent_phone | string | Customer Service Contact Information |
data.service_agent_type | number[] | Customer service type, support multiple, 0: Weixin Mini Program official customer service, 1: custom customer service path 2: Linked phone |
data.default_receiving_address | Address | The default return address, used in the event of an after-sales delay, allows the user to return the goods to this address. |
data.default_receiving_address.receiver_name | string | yes |
data.default_receiving_address.detailed_address | string | yes |
data.default_receiving_address.tel_number | string | yes |
data.default_receiving_address.country | string | no |
data.default_receiving_address.province | string | no |
data.default_receiving_address.city | string | no |
data.default_receiving_address.town | string | no |