# 获取商品标签列表

# 简要描述
  • 获取商品标签列表
# 请求URL
  • /api/getLabelList
# 请求头
参数名 必选 类型 说明
Content-Type string 此参数必传,当请求数据非json时此参数传对应格式如(multipartform-data,application/x-www-form-urlencoded,等)是json请传application/json
askKey string 此参数必传,验证app的令牌
sign string 此参数如果在app设置开启了验签是必传
time string 当开启验签时,此参数为必传
apiUserToken string 除了部分不验证用户令牌的接口以外此参数为必传(注册/登陆/发送验证码)不是必传,其余都是必传
# 请求方式
  • get
# 参数
参数名 必选 类型 说明
name string 标签名称
id string 标签id
# 请求示例
/api/getLabelList
1
# 返回示例
{
    "code": "200",
    "message": "",
    "status": true,
    "data": [
        {
            "id": "772230372223639552",
            "createdBy": "645431969335300096",
            "createdDate": "2023-01-09 08:54:38",
            "modifiedBy": "645431969335300096",
            "modifiedDate": "2023-01-09 08:54:38",
            "status": 1,
            "ip": "192.168.2.90",
            "managementId": "645431969335300096",
            "name": "vv"
        },
        {
            "id": "772230370940182528",
            "createdBy": "645431969335300096",
            "createdDate": "2023-01-09 08:54:38",
            "modifiedBy": "645431969335300096",
            "modifiedDate": "2023-01-09 08:54:38",
            "status": 1,
            "ip": "192.168.2.90",
            "managementId": "645431969335300096",
            "name": "vv"
        },
        {
            "id": "772230343526211584",
            "createdBy": "645431969335300096",
            "createdDate": "2023-01-09 08:54:31",
            "modifiedBy": "645431969335300096",
            "modifiedDate": "2023-01-09 08:54:31",
            "status": 1,
            "ip": "192.168.2.90",
            "managementId": "645431969335300096",
            "name": "gg"
        },
        {
            "id": "772230329152331776",
            "createdBy": "645431969335300096",
            "createdDate": "2023-01-09 08:54:28",
            "modifiedBy": "645431969335300096",
            "modifiedDate": "2023-01-09 08:54:28",
            "status": 1,
            "ip": "192.168.2.90",
            "managementId": "645431969335300096",
            "name": "hg"
        },
        {
            "id": "772230301205684224",
            "createdBy": "645431969335300096",
            "createdDate": "2023-01-09 08:54:21",
            "modifiedBy": "645431969335300096",
            "modifiedDate": "2023-01-09 08:54:21",
            "status": 1,
            "ip": "192.168.2.90",
            "managementId": "645431969335300096",
            "name": "2"
        },
        {
            "id": "772230279512743936",
            "createdBy": "645431969335300096",
            "createdDate": "2023-01-09 08:54:16",
            "modifiedBy": "645431969335300096",
            "modifiedDate": "2023-01-09 08:54:16",
            "status": 1,
            "ip": "192.168.2.90",
            "managementId": "645431969335300096",
            "name": "f"
        },
        {
            "id": "2",
            "createdBy": "11",
            "createdDate": "1970-01-01 08:00:00",
            "modifiedBy": "645431969335300096",
            "modifiedDate": "2022-07-05 17:55:06",
            "status": 1,
            "ip": "192.168.2.46",
            "managementId": "645431969335300096",
            "name": "周密"
        }
    ],
    "pc": {
        "pageIndex": 1,
        "pageSize": 7,
        "pageWindow": 10,
        "maxPages": 1,
        "total": 7,
        "startIndex": 0,
        "endIndex": 7,
        "startPageIndex": 1,
        "previousPage": 0,
        "nextPage": 0,
        "endPageIndex": 1
    },
    "time": null,
    "sign": null
}
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
# 返回参数说明
参数名 类型 说明
code string 状态码200成功403权限异常或登陆超时,500请求异常
status int 状态0删除1使用
data array 内容
createdDate string 创建时间
name string 标签名称
id string 标签id
# 备注
  • 更多返回错误代码请看首页的错误代码描述
lastUpdate: 7/25/2024, 4:20:09 PM