1. Create
...
GET api/v1/channels/{id}/
Get info of on the channel
| Path Parameters | Type | Note |
|---|---|---|
| id | UUID | channel id |
Example Respone Response Body
| Code Block |
|---|
{
"data": {
"id": "89cab0f6-47a8-4335-b217-7ec39cfcf65f",
"name": "channel1",
"network": {
"id": "bfb3484d-dc5c-4cc4-8be0-0251eefd2c57",
"name": "test1"
},
"organizations": [
{
"id": "76ebf68b-019f-45ff-abef-67e3a3d1752f",
"name": "org1.cello.com"
}
],
"create_ts": "2021-12-10T05:52:30.931971Z"
},
"msg": null,
"status": "successful"
}
|
...
5. Delete Organization
6. Export Configuration
GET api/v1/channels/:channel_id/config
Download the configuration block file
| Path Parameters | Type | Note |
|---|---|---|
| id | UUID | channel id |
https://github.com/hyperledger/cello/pull/479