查询商标申请处理阶段列表
功能介绍
查询商标智能注册申请处理阶段列表。
用于查询服务商和商标局返回的相关处理通知信息。
URI
GET /v1/trademark-application/{application_id}/stages
参数 | 是否必选 | 参数类型 | 描述 |
|---|---|---|---|
X-Auth-Token | 是 | String | 用户IAM Token信息,参考认证鉴权章节获得。 |
参数 | 位置 | 是否必选 | 参数类型 | 描述 |
|---|---|---|---|---|
application_id | path | 是 | String | 申请单id。 |
offset | query | 否 | Integer | 分页偏移量,默认值为0。 最小值为0,最大值为10000。 |
limit | query | 否 | Integer | 每页数量,默认10条。 最小值为1,最大值为100。 |
参数 | 参数类型 | 描述 |
|---|---|---|
count | Integer | 符合查询条目数。 |
stages | trademarkApplicationStages object | 查询商标阶段列表。 |
参数 | 参数类型 | 描述 |
|---|---|---|
id | Integer | 阶段日志id。 |
name | String | 阶段名称。 |
update_time | String | 触发时间。 |
comment | String | 备注信息。 |
attachment_url | String | 相关附件url。 |
请求示例
在华为云查询商标智能注册申请处理阶段列表
GET https://{endpoint}/v1/trademark-application/CS2207181658P5GRX/stages 响应示例
{
"count": 318,
"stages": [{
"id": 70519,
"name": "服务商确认材料",
"update_time": "2022-11-22T16:02:46Z",
"comment": "撤回失效",
"attachment_url": null
},
{
"id": 70518,
"name": "服务商确认材料",
"update_time": "2022-11-07T22:28:48Z",
"comment": null,
"attachment_url": null
},
{
"id": 70517,
"name": "服务商确认材料",
"update_time": "2022-11-07T22:27:22Z",
"comment": null,
"attachment_url": null
},
{
"id": 70516,
"name": "服务商确认材料",
"update_time": "2022-11-07T22:21:23Z",
"comment": null,
"attachment_url": null
},
{
"id": 70515,
"name": "服务商确认材料",
"update_time": "2022-11-07T22:18:25Z",
"comment": null,
"attachment_url": null
},
{
"id": 70514,
"name": "服务商确认材料",
"update_time": "2022-11-07T22:17:29Z",
"comment": null,
"attachment_url": null
},
{
"id": 70513,
"name": "服务商递交商标局",
"update_time": "2022-11-07T21:19:53Z",
"comment": null,
"attachment_url": null
},
{
"id": 70512,
"name": "服务商递交商标局",
"update_time": "2022-11-05T16:12:57Z",
"comment": "撤回失效",
"attachment_url": null
},
{
"id": 70511,
"name": "服务商递交商标局",
"update_time": "2022-11-04T11:54:36Z",
"comment": "撤回失效",
"attachment_url": null
},
{
"id": 70510,
"name": "服务商确认材料",
"update_time": "2022-11-01T20:26:58Z",
"comment": "撤回失效",
"attachment_url": null
}]
} 
