节点列表查询
更新时间:2020-04-09
节点列表查询
接口描述 节点列表查询。
权限说明 请求发起人需要具有合法的AccessKeyID和SecretAccessKey才能发起请求。
注意事项
如果请求中没有用户验证信息(即匿名访问),返回403 Forbidden
,错误信息:AccessDenied
。
请求(Request)
-
请求语法
GET /v1/fabric/consortiums/nodes?orgUuid={orgUuid}&consortiumUuid={consortiumUuid} HTTP/1.1 Host: bbe.bj.baidubce.com x-bce-date: <x-bce-date> x-bce-request-id: <x-bce-request-id> Authorization: <Authorization>
- 请求头域 除公共头域外,无其它特殊头域。
-
请求参数
名称 类型 位置 描述 是否必须 orgUuid String Query 组织Uuid 是 consortiumUuid String Query 联盟Uuid 是
响应(Response)
- 响应头域 除公共头域外,无其它特殊头域。
-
响应参数
名称 类型 描述 data json 返回结果:{"nodes":[]Node} Node:
名称 类型 描述 id Int id uuid String 唯一ID consortiumUuid String 联盟Uuid orgUuid String 组织Uuid nodeName String 节点名称 nodeType String 节点类型:orderer/peer url String 公网地址 explorerUrl String 浏览器地址,只有peer类型的节点拥有 deleted Bool 是否已经删除 createTime String 创建时间
示例
-
请求示例
GET /v1/fabric/consortiums/nodes?orgUuid=2cd9e3d2-438a-f579-ebef-46056b1cb10e&consortiumUuid=3b1a289b-da2f-1bc0-518e-8de037cd79e2 HTTP/1.1 Host: bbe.bj.baidubce.com x-bce-date: 2019-10-23T06:26:02Z x-bce-request-id: b9485394-c7dc-3cfa-d454-57c34773d08c Authorization: bce-auth-v1/98cdcde27d8e464d895222fd8023a029/2019-10-23T06:26:02Z/1800/host/1e88313cae40a47550bdf0e3bfa591c06e4443c1ed690d510032e084676b00f8
-
响应示例
200 Content-Length: 0 Content-Type: application/json; charset=utf-8 Date: Wed, 23 Oct 2019 06:26:02 GMT { "data":{ "nodes":[{ "id":12, "uuid":"f5891400-5fb2-f2da-a08f-78dfab2dfaef", "consortiumUuid:"f5891400-5fb2-f2da-a08f-78dfab2dfaef", "orgUuid":"f5891400-5fb2-f2da-a08f-78dfab2dfaef", "nodeName":"org1-peer0", "nodeType":"peer", "url":"http://127.0.0.1:7050" "explorerUrl":"http://127.0.0.1:8080", "deleted":false, "createTime":"2019-10-30T12:28:58+08:00" }] } }