# 品牌详情接口(v1/wiki/brand/get_brand_detail_info)

获取品牌信息

# 公共参数

参考新手指南。

# 请求参数说明

参数名称 参数类型 是否必填 说明
brand_id number 品牌ID

# 返回参数说明

参数接口 参数类型 说明 示例值
error_code String 错误码,0正常,非零代表错误 0
error_msg String 错误信息 数据不存在
data Object 数据节点信息
brand_info Object 品牌数据
ID number 品牌iD
cn_title String 中文名
en_title String 英文名
logo_info String 图片信息 "a:3:{s:8:"logo_url";s:50:"http://y.zdmimg.com/202109/26/61501e2bcd79b698.png";s:10:"logo_width";s:3:"129";s:11:"logo_height";s:3:"129";}"
short_intro String 简介
create_time String 创建时间
last_edit_time String 更新时间
head_address String 总部地点
found_year number 创立时间(年)
found_month number 创立时间(月)
found_day number 创立时间(日)
slogan_chinese_value String 品牌Slogan中文
slogan_foreign_value String 品牌Slogan英文
bg_img_info String 品牌背景图 "a:3:{s:6:"bg_url";s:51:"http://y.zdmimg.com/202112/01/61a6e62d8e4a75067.jpg";s:8:"bg_width";s:3:"499";s:9:"bg_height";s:3:"266";}"
has_compeleted number 完成状态: 0 - 未完成 1-已完成
grade number 品牌级别(1~5级) 1
official_channel Object 渠道数据
service_tel Array 服务电话数据
type String 联系方式类型
telephone String 号码
office_weibo Array 微博数据
title String 微博名称
url String 微博链接
office_weixin Array 微信数据
title String 微信名称
account String 微信账号
store_address Array 线上销售渠道
title String 线上销售渠道名称
address String 线上销售渠道链接
type number 1:品牌商城、2:品牌官网
brand_event Array 大事记
event_year number
event_month number
event_day number
event_content String 内容

返回示例

{
    "error_code": 0,
    "msg": "",
    "data": {
        "brand_info": {
            "ID": 217032,
            "cn_title": "中文名称",
            "en_title": "英文名称",
            "common_title": "",
            "search_nicktitle": "agagaga",
            "logo_info": "a:3:{s:8:\"logo_url\";s:50:\"http://y.zdmimg.com/202109/26/61501e2bcd79b698.png\";s:10:\"logo_width\";s:3:\"129\";s:11:\"logo_height\";s:3:\"129\";}",
            "short_intro": "简介",
            "long_intro": "",
            "rank": 0,
            "is_deleted": 0,
            "create_time": "2021-09-26 15:16:17",
            "last_edit_time": "2021-12-01 11:07:15",
            "last_edit_id": 11840,
            "associate_title": "英文名称/中文名称",
            "level": 0,
            "domain_select": 0,
            "region_id": 0,
            "country_id": 0,
            "brand": "",
            "relation_num": 0,
            "all_num": 0,
            "wiki_num": 0,
            "another_title": "",
            "head_address": "总部地点",
            "found_year": 2021,
            "found_month": 11,
            "found_day": 20,
            "founder_foreign_name": "",
            "founder_chinese_name": "",
            "company_name": "",
            "company_scale": 0,
            "slogan_chinese_value": "品牌Slogan中文",
            "slogan_foreign_value": "品牌Slogan英文",
            "bg_img_info": "a:3:{s:6:\"bg_url\";s:51:\"http://y.zdmimg.com/202112/01/61a6e62d8e4a75067.jpg\";s:8:\"bg_width\";s:3:\"499\";s:9:\"bg_height\";s:3:\"266\";}",
            "brand_plate": "",
            "brand_plate_num": 1,
            "is_related_cate": 1,
            "has_compeleted": 0,
            "followed_num": 0,
            "brand_status": 0,
            "hot_count": 0,
            "first_char": "",
            "first_char_need_update": 1,
            "display_type": "0",
            "grade": 2,
            "show_title": 0,
            "country": "中国",
            "service_phone": "",
            "official_channel": {
                "service_tel": [
                    {
                        "type": "手机",
                        "telephone": "138765640999"
                    }
                ],
                "office_weibo": [
                    {
                        "title": "微博测试",
                        "url": "https://weibo.com/test"
                    }
                ],
                "office_weixin": [
                    {
                        "title": "weixintest",
                        "account": "weixintest01"
                    }
                ]
            },
            "business_ads": []
        },
        "store_address": [
            {
                "ID": 53402,
                "brand_id": 217032,
                "title": "vans官方旗舰店(测试修改)",
                "address": "https://vans.tmall.com/",
                "type": 2,
                "country_id": -1,
                "mini_title": "",
                "app_show": 1,
                "is_show": 1,
                "weight": 50,
                "is_auth_label": 0,
                "create_time": "2021-03-11 15:54:46",
                "update_time": "2021-12-01 10:55:39"
            }
        ],
        "brand_event": [
            {
                "ID": 26343,
                "brand_id": 217032,
                "event_year": 2021,
                "event_month": 1,
                "event_day": 2,
                "event_content": "<p>大事记002</p>",
                "create_time": "2021-12-01 11:07:15"
            },
            {
                "ID": 26344,
                "brand_id": 217032,
                "event_year": 2021,
                "event_month": 1,
                "event_day": 1,
                "event_content": "<p>大事记001</p>",
                "create_time": "2021-12-01 11:07:15"
            }
        ]
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114

# 返回错误码说明

全局错误码 参考新手指南API详解

最后更新: 1/10/2022, 3:13:00 PM
  • 版权所有 本站内容未经书面许可,禁止一切形式的转载。 © copyright 2010-2020 值得买科技. All rights reserved.
  • 京ICP备12048526号-8 | 违法和不良信息举报电话:4008108106-9 | 违法和不良信息举报邮箱:service@smzdm.com 营业执照 北京市诚信创建企业
  • 公司名称:北京值得买科技股份有限公司 地址:北京市丰台区汽车博物馆东路1号院3号楼32层3701和33层3801 座机:010-56640700