Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
D
dbp
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • Operations
    • Operations
    • Incidents
  • Analytics
    • Analytics
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • credit_data
  • dbp
  • Wiki
    • Trademark.wiki
  • open_trademark_get

open_trademark_get · Changes

Page history
init authored Oct 21, 2019 by 李林坳's avatar 李林坳
Hide whitespace changes
Inline Side-by-side
Showing with 195 additions and 0 deletions
+195 -0
  • trademark.wiki/open_trademark_get.md trademark.wiki/open_trademark_get.md +195 -0
  • No files found.
trademark.wiki/open_trademark_get.md 0 → 100644
View page @ 34c365d3
## 根据申请人查询商标列表(新)
----
本接口用于根据申请人查询商标列表
### 调用路径
> http://api.shuidi.cn/open/trademark/get
### 输入参数
|参数名称 | 是否必填 | 说明 |
| -------- | -------- | -------- |
|认证相关参数 | 是| 见接口认证章节说明 |
|key | 是 | 申请人名称 |
|intCls | 否 | 商标类别号 |
|pageIndex | 否 | 页码,查询页码列表信息,默认第一页 |
|pageSize | 否 | 每页条数,默认10,最大不超过50 |
{% include '../common/authenticate.md' %}
### 输出结果
{% include '../common/output_format.md' %}
#### 输出样例
```json
{
"statusCode": 1,
"statusMessage": "请求成功",
"data": {
"paging": {
"pageSize": 10,
"pageIndex": 1,
"totalRecords": 783
},
"result": [
{
"id": "NPNRMNNOSONOR",
"regNo": "35030609",
"name": "",
"categoryId": 9,
"category": "科学仪器",
"person": "小米科技有限责任公司",
"hasImage": "true",
"flow": "0",
"imageUrl": "http://api.shuidi.cn/open/trademark/download?key=78a82fd48c8b303abad7c428b15b4189.jpg",
"flowStatus": null,
"flowStatusDesc": null,
"appDate": "2018/11/30",
"status": "4"
},
{
"id": "NPNQPQSTUUSRN",
"regNo": "35042147",
"name": "",
"categoryId": 9,
"category": "科学仪器",
"person": "小米科技有限责任公司",
"hasImage": "true",
"flow": "0",
"imageUrl": "http://api.shuidi.cn/open/trademark/download?key=982f73960b8866c8bc832695d0bc5fe5.jpg",
"flowStatus": null,
"flowStatusDesc": null,
"appDate": "2018/11/30",
"status": "4"
},
{
"id": "NPNMLLLPQTMRR",
"regNo": "34980504",
"name": "",
"categoryId": 9,
"category": "科学仪器",
"person": "小米科技有限责任公司",
"hasImage": "true",
"flow": "0",
"imageUrl": "http://api.shuidi.cn/open/trademark/download?key=3dce8b2d12f57b71d55b8ea30b7dc45b.jpg",
"flowStatus": null,
"flowStatusDesc": null,
"appDate": "2018/11/28",
"status": "4"
}
],
"groupItems": [
{
"key": "appdateyear",
"items": [
{
"value": "2010",
"desc": "2010",
"count": 9
},
{
"value": "2011",
"desc": "2011",
"count": 15
},
{
"value": "2012",
"desc": "2012",
"count": 64
},
{
"value": "2013",
"desc": "2013",
"count": 39
},
{
"value": "2014",
"desc": "2014",
"count": 49
}
]
},
{
"key": "status",
"items": [
{
"value": "1",
"desc": "有效",
"count": 1
},
{
"value": "2",
"desc": "无效",
"count": 20
},
{
"value": "3",
"desc": "待审",
"count": 165
},
{
"value": "4",
"desc": "不定",
"count": 597
}
]
},
{
"key": "flowno",
"items": [
{
"value": "0",
"desc": "",
"count": 20
},
{
"value": "1000",
"desc": "等待补正回文",
"count": 1
}
]
},
{
"key": "intcls",
"items": [
{
"value": "9",
"desc": "科学仪器",
"count": 783
}
]
}
]
}
}
```
#### 输出结果字段含义
| 属性名 | 含义 |
| -------- | -------- |
| paging.pageSize | 每页条数,默认10,最大不超过50 |
| paging.pageIndex | 页码,查询页码列表信息,默认第一页 |
| paging.totalRecords | 总记录数 |
| groupItems.key | 分类key |
| groupItems.items.value | 分类value |
| groupItems.items.desc | 描述 |
| groupItems.items.count | 总计数量 |
| result.id | 内部ID |
| result.regNo | 注册号 |
| result.name | 商标名 |
| result.categoryId | 类别号 |
| result.category | 类别 |
| result.person | 申请人 |
| result.hasImage | 是否有图片(true/false) |
| result.flow | 商标续展 |
| result.imageUrl | 图片地址(多个中间用逗号隔开) |
| result.flowStatus | 流程状态代码 |
| result.flowStatusDesc | 流程状态描述 |
| result.appDate | 申请日期 |
| result.status | 商标状态 |
{% include '../common/error_code.md'%}
Clone repository
  • README
  • SUMMARY
  • bidchance.wiki
    • README
    • open_bidchance_batchGetDatas
    • open_bidchance_batchGetKeywords
    • open_bidchance_count
    • open_bidchance_find
    • open_bidchance_keywords
    • open_bidchance_search
    • open_bidchance_searchPage
  • common
    • authenticate
    • error_code
    • output_format
    • service_hosts_pub
  • company.wiki
    • README
View All Pages