# 个体户商标企业查询表


# 接口描述

查询个体户商标企业查询表。

# 字符编码

UTF-8

# 请求地址

/openapi/enterprise/t_self_trademark_relation

# 请求 Header 参数

参数名 类型 必填 说明
accessToken String 请求发起时需要在 header 中,携带 accessToken,获取方式详见获取 accessToken

# 版本号(ver)

1

# 请求方式

POST(application/json)

# 请求 Body 参数

参数名 类型 长度 必填 说明
ver Integer - 必填 api 接口版本,参见具体 API 的版本。示例:1
creditCode String 255 非必填 统一社会信用代码
companyName String 255 非必填 企业名称
zzEid String 100 非必填 企业id
pageNum Integer - 非必填 页数,默认1
pageSize Integer - 非必填 每页条数,默认20条,最多20条

# 请求 Body 示例

{
    "ver": 1,
    "creditCode":"92321003MA1TCE99X9"
}
1
2
3
4

# 应用级返回结果

参数名 类型 长度 必填 说明
data tSelfTrademarkRelation[] - 返回数据
totalCount Integer - 总条数
pageNum Integer - 页数
pageSize Integer - 每页条数
dataCnt Integer - 实际数据条数

# tSelfTrademarkRelation 属性值对象

参数名 类型 长度 必填 说明
applicant string 255 YES 申请人名称
zzEid string 36 YES 申请人eid
id bigint 20 YES 自增主键
regNumber string 50 YES 申请/注册号
typeNum string 20 YES 国际分类
uTags int 3 YES 是否隐藏
id string 50 YES 关联id

# 返回结果示例

{
    "code": 200,
    "data": {
        "list": [
            {
                "id": "611857f87b489f4732f6f314",
                "regNumber": "9294347",
                "typeNum": "7",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "611264148e35c1720b2ea16d",
                "regNumber": "4546364",
                "typeNum": "7",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "6112640e56309a53cc2af934",
                "regNumber": "4546363",
                "typeNum": "9",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "611263fbdeec61134316ac39",
                "regNumber": "4415833",
                "typeNum": "6",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "6112641364449aa7a399cee6",
                "regNumber": "4415831",
                "typeNum": "6",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "61126409984be77125a120d0",
                "regNumber": "4100995",
                "typeNum": "6",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "61126400519d04c2338514f4",
                "regNumber": "4100994",
                "typeNum": "6",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "61126405fefa526c21b0de24",
                "regNumber": "4465346",
                "typeNum": "7",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "61154af5a9965af75a5c84b5",
                "regNumber": "33827583",
                "typeNum": "9",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "61154af8757ff3fb70bd87b4",
                "regNumber": "33830330",
                "typeNum": "7",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "611c869510e16d2b4d764724",
                "regNumber": "3814256",
                "typeNum": "7",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            },
            {
                "id": "611264069ff590a13c3bb264",
                "regNumber": "4482472",
                "typeNum": "9",
                "zzEid": "4114e15d075a6c9fec01368020c9f828",
                "applicant": "邗江区富凯机床配件经营部",
                "utags": 0
            }
        ],
        "totalCount": 12,
        "pageNum": 1,
        "pageSize": 20,
        "dataCnt": 12
    },
    "msg": "成功"
}
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

返回code码见 API 返回码说明

上一次更新时间: 12/17/2024, 6:42:40 PM