查询通道详情
更新时间:2020-01-03
查询通道详情
接口描述:查询联盟中通道的详情,包括通道中组织的详细信息
权限说明:请求发起人需要具有合法的AccessKeyID和SecretAccessKey才能发起请求。
注意事项:如果请求中没有用户验证信息(即匿名访问),返回403 Forbidden,错误信息:AccessDenied。
请求(Request)
-
请求语法
GET /v1/fabric/consortiums/channel/detail:channelUuid HTTP/1.1 Host: bbe.bj.baidubce.com x-bce-date: <x-bce-date> x-bce-request-id: <x-bce-request-id> Authorization: <Authorization>
- 请求头域:除公共头域外,无其它特殊头域。
-
请求参数
名称 类型 位置 描述 是否必须 channelUuid string Path参数 通道uuid 必须
响应(Response)
- 响应头域:除公共头域外,无其它特殊头域。
- 响应参数:
名称 | 类型 | 描述 |
---|---|---|
channel | FabricChannel | 通道详情 |
Channel:
名称 | 类型 | 描述 |
---|---|---|
channelName | String | 通道名称 |
networkUuid | String | 网络uuid |
consortiumUuid | String | 联盟Uuid |
peerOrgUuidList | []String | 通道中peer组织uuid |
orgs | []String | 通道中组织uuid列表 |
participants | String | 通道中组织详情列表 |
state | String | 状态 |
userId | String | 用户ID |
uuid | String | uuid |
description | String | 描述 |
createTime | String | 创建时间 |
initiator | String | 发起人 |
Participant:
名称 | 类型 | 描述 |
---|---|---|
OrgUuid | String | 组织uuid |
OrgName | String | 组织中文名 |
OrgEnglishName | String | 组织英文名 |
Description | String | 组织描述 |
JoinTime | String | 加入通道时间 |
失败响应参考错误码部分。
示例
-
请求示例
GET /v1/fabric/consortiums/channel/detail?channelUuid=9f3f492e-c949-eda1-a94c-70bd39a2da20 HTTP/1.1 Host: bbe.bj.baidubce.com x-bce-date: 2019-12-20T06:55:23Z Authorization: bce-auth-v1/e38d78f7b74841ec92727531369834d8/2019-10-29T08:25:20Z/1800/host/56a2a8096f99d5b0fb38f7815b61f43f28b662f0bb49c3407386f932ab6550af
-
响应示例
200 Content-Length: 3153 Content-Type: application/json; charset=utf-8 Date: Fri, 04 Jan 2019 07:24:02 GMT { "data": { "channel": { "channelName": "ym-channel", "networkUuid": "", "consortiumUuid": "764b436f-2772-3a2b-a94c-70bd39a2da20", "participants": [ { "orgUuid": "ec98e5b1-a381-b306-f0d1-66fe1f717d2a", "orgName": "ym-org", "orgEnglishName": "ym-org", "description": "desc", "joinTime": "2019-12-20T10:22:20+08:00" } ], "peerOrgUuidList": [ "ec98e5b1-a381-b306-f0d1-66fe1f717d2a" ], "orgs": [ "ym-org" ], "description": "ym-channel", "userId": null, "uuid": "9f3f492e-c949-eda1-a94c-70bd39a2da20", "createTime": "2019-12-20T10:22:20+08:00", "state": "RUNNING", "initiator": "ec98e5b1-a381-b306-f0d1-66fe1f717d2a" } } }