-
Notifications
You must be signed in to change notification settings - Fork 28
/
openapi-rest.yaml
849 lines (818 loc) · 20.4 KB
/
openapi-rest.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
openapi: 3.0.0
info:
description: API server for Hyperledger Fabric
title: fabric-starter-rest
version: FABRIC_STARTER_REST_VERSION=latest
paths:
/users:
post:
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/User"
description: User object
required: true
description: |-
Login or register user.
tags:
- users
responses:
"200":
description: User logged in and his JWT returned
default:
description: Unexpected error
/domain:
get:
description: |-
Show network name (as defined by DOMAIN env variable at setup time)
tags:
- config
responses:
"200":
description: DOMAIN
default:
description: Unexpected error
/mspid:
get:
description: |-
Show name (MSPID) of my organization
tags:
- config
responses:
"200":
description: MSPID
default:
description: Unexpected error
/config:
get:
description: >-
Network config json to aid debugging; use for development only as it may expose sensitive data
tags:
- config
responses:
"200":
description: Network config
default:
description: Unexpected error
/chaincodes:
get:
description: |-
Query chaincodes installed on the first peer of my organization
tags:
- chaincodes
responses:
"200":
description: Array of chaincode objects
default:
description: Unexpected error
security:
- JWT: []
post:
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
channelId:
description: "channel - eg: common"
type: string
file:
description: "chaincode source code archived in zip - eg:
chaincode_example02.zip"
type: string
format: binary
targets:
description: 'list of peers to install to - eg:
["peer0.org1.example.com:7051"]'
type: string
version:
description: "(default 1.0) - chaincode version - eg: 1.0"
type: string
language:
description: "(default node) - chaincode language - eg: golang"
type: string
required:
- channelId
- file
- targets
description: |-
Install chaincode
tags:
- chaincodes
responses:
"200":
description: Chaincode installed
default:
description: Unexpected error
security:
- JWT: []
/storage/chaincodes:
get:
description: |-
Query chaincodes packages saved in a storage and ready for install
tags:
- chaincodes
responses:
"200":
description: Array of chaincode package objects
default:
description: Unexpected error
security:
- JWT: []
/chaincodes/external:
post:
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
channelId:
description: "channel - eg: common"
type: string
version:
description: "(default 1.0) - chaincode version - eg: 1.0"
type: string
file:
description: "chaincode source code archived in tar.gz - eg:
chaincode_example02.tar.gz"
type: string
format: binary
required:
- channelId
- file
description: |-
Install chaincode as external service
tags:
- chaincodes
responses:
"200":
description: Chaincode installed
default:
description: Unexpected error
security:
- JWT: []
/channels:
get:
description: |-
Query channels joined by the first peer of my organization
tags:
- channels
responses:
"200":
description: Array of channel objects
default:
description: Unexpected error
security:
- JWT: []
post:
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/Channel"
description: Channel object in form {channelId:"channelId"}
required: true
description: |-
Create channel and join it
tags:
- channels
responses:
"200":
description: Channel created
default:
description: Unexpected error
security:
- JWT: []
"/channels/{channelId}":
post:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
description: |-
Join channel
tags:
- channels
responses:
"200":
description: Channel joined
default:
description: Unexpected error
security:
- JWT: []
get:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
description: |-
Query channel info
tags:
- channels
responses:
"200":
description: Channel block info
default:
description: Unexpected error
security:
- JWT: []
"/channels/{channelId}/orgs":
get:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
- name: filter
in: query
description: reject orderer name flag
required: true
schema:
type: boolean
description: |-
Query organizations in a channel
tags:
- channels
responses:
"200":
description: Array of organization objects with names (MSPIDs)
default:
description: Unexpected error
security:
- JWT: []
post:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
requestBody:
$ref: "#/components/requestBodies/Organization"
description: |-
Add organization to a channel
tags:
- channels
responses:
"200":
description: Organization added
default:
description: Unexpected error
security:
- JWT: []
"/channels/{channelId}/peers":
get:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
description: |-
Query peers that joined a channel
tags:
- channels
responses:
"200":
description: Array of peer names
default:
description: Unexpected error
security:
- JWT: []
"/orgs/{org}/peers":
get:
parameters:
- name: org
in: path
description: "organization - eg: org1"
required: true
schema:
type: string
description: |-
Query peers of an organization
tags:
- orgs
responses:
"200":
description: Array of peer objects
default:
description: Unexpected error
security:
- JWT: []
/network/orgs:
get:
description: >-
Get all organizations registered in DNS service (currently matches with common channel orgs, but not necessary in future)
tags:
- orgs
responses:
"200":
description: Array of organization objects
default:
description: Unexpected error
security:
- JWT: []
"/channels/{channelId}/blocks/{number}":
get:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
- name: number
in: path
description: "block number - eg: 1"
required: true
schema:
type: integer
description: |-
Query a given block in a channel
tags:
- channels
responses:
"200":
description: Block
default:
description: Unexpected error
security:
- JWT: []
"/channels/{channelId}/transactions/{id}":
get:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
- name: id
in: path
description: "transaction id - eg: 5e4c57948cf6fe465..."
required: true
schema:
type: string
description: |-
Query a given transaction in a channel
tags:
- channels
responses:
"200":
description: Transaction
default:
description: Unexpected error
security:
- JWT: []
"/channels/{channelId}/chaincodes":
get:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
description: |-
Query chaincodes instantiated on a channel
tags:
- channels
responses:
"200":
description: Object with an array of chaincodes
default:
description: Unexpected error
security:
- JWT: []
post:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/Instantiate"
description: instantiate request
required: true
description: |-
Instantiate chaincode
tags:
- channels
responses:
"200":
description: Transaction id
default:
description: Unexpected error
security:
- JWT: []
"/channels/{channelId}/chaincodes/upgrade":
post:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/Upgrade"
description: upgrade request
required: true
description: |-
Upgrade chaincode
tags:
- channels
responses:
"200":
description: Transaction id
default:
description: Unexpected error
security:
- JWT: []
"/channels/{channelId}/chaincodes/{chaincodeId}":
get:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
- name: chaincodeId
in: path
description: "channel - eg: reference"
required: true
schema:
type: string
- name: fcn
in: query
description: "chaincode function name - eg: list"
required: true
schema:
type: string
- name: args
in: query
description: 'string encoded arguments to chaincode function - eg: ["account"]'
required: true
schema:
type: string
- name: targets
in: query
description: 'list of peers to query - eg: ["peer0.org1.example.com:7051"]'
required: false
schema:
type: string
- name: unescape
in: query
description: return not array of strings but array of json objects - eg. true
required: false
schema:
type: boolean
description: |-
Query chaincode
tags:
- chaincode
responses:
"200":
description: An array of query results
default:
description: Unexpected error
security:
- JWT: []
post:
parameters:
- name: channelId
in: path
description: "channel - eg: common"
required: true
schema:
type: string
- name: chaincodeId
in: path
description: "channel - eg: reference"
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/Invoke"
description: invoke request
required: true
description: |-
Invoke chaincode
tags:
- chaincode
responses:
"200":
description: Transaction id
default:
description: Unexpected error
security:
- JWT: []
/consortium/members:
get:
description: |-
Query member organizations of current consortium
tags:
- consortium
responses:
"200":
description: Array of MSPIDs
default:
description: Unexpected error
security:
- JWT: []
post:
requestBody:
$ref: "#/components/requestBodies/Organization"
description: |-
Add organization to the consortium
tags:
- consortium
responses:
"200":
description: Organization added
default:
description: Unexpected error
security:
- JWT: []
/applications:
get:
description: |-
Get list of deployed custom web applications
tags:
- applications
responses:
default:
description: Unexpected error
security:
- JWT: []
post:
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
description: "application compiled folder archived in zip - eg:
coolwebapp.zip"
type: string
format: binary
required:
- file
description: |-
Deploy new web application
tags:
- applications
responses:
default:
description: Unexpected error
security:
- JWT: []
/middlewares:
get:
description: |-
Get list of deployed custom middlewares
tags:
- middlewares
responses:
default:
description: Unexpected error
security:
- JWT: []
post:
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
description: middlewares's js file
type: string
format: binary
required:
- file
description: |-
Deploy new middleware
tags:
- middlewares
responses:
default:
description: Unexpected error
security:
- JWT: []
/appstore/app:
post:
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
description: "folder with compiled application archived in zip - eg:
coolwebapp.zip"
type: string
format: binary
required:
- file
description: |-
Deploy new integrated
tags:
- appstore
responses:
default:
description: Unexpected error
security:
- JWT: []
tags:
- name: users
description: Authentication and operations about users
- name: config
description: Queries for config
- name: chaincodes
description: Queries and operations on chaincode
- name: channels
description: Queries and operations on channels
- name: orgs
description: Queries for organizations
- name: chaincode
description: Invoke and query chaincode
- name: consortium
description: view and control participants
- name: applications
description: Web applications
- name: middlewares
description: Middlewares
- name: appstore
description: market applications
servers:
- url: /
components:
requestBodies:
Organization:
content:
application/json:
schema:
$ref: "#/components/schemas/Organization"
description: Org object
required: true
securitySchemes:
JWT:
type: apiKey
in: header
name: Authorization
description: "Paste the jwt you received from logging in by a post to /users ex.:
Bearer eyJhbGci..."
schemas:
User:
required:
- username
- password
properties:
username:
type: string
description: "username "
example: oleg
password:
type: string
description: "password "
example: pass
Channel:
required:
- channelId
properties:
channelId:
type: string
description: "channel name "
example: common
Organization:
required:
- orgId
- domain
- orgIp
properties:
orgId:
type: string
description: organization name by convention same as MSPID
example: org1
domain:
type: string
description: domain
orgIp:
type: string
description: IP of current peer
masterIp:
type: string
description: Ip of main (anchor) peer of Org
peer0Port:
type: string
description: peer's port
wwwPort:
type: string
description: www port (certs provisioning)
peerName:
type: string
description: peer name
Instantiate:
required:
- chaincodeId
properties:
chaincodeId:
type: string
description: "chaincode name "
example: reference
fcn:
type: string
description: "(default fcn) - chaincode function name "
example: init
args:
type: array
items:
type: string
chaincodeVersion:
type: string
description: "chaincode version (default 1.0) "
example: "1.0"
chaincodeType:
type: string
description: "chaincode language (default node) "
example: golang
targets:
type: array
items:
type: string
waitForTransactionEvent:
type: boolean
description: "respond only when transaction commits "
example: true
Upgrade:
required:
- chaincodeId
- chaincodeType
- fcn
- args
- chaincodeVersion
properties:
chaincodeId:
type: string
description: Id of the chaincode to upgrade
chaincodeType:
type: string
description: chaincode type
fcn:
type: string
description: domain
args:
type: array
description: array ofInit function args
items: {}
chaincodeVersion:
type: string
description: new version
Invoke:
required:
- fcn
- args
properties:
fcn:
type: string
description: "chaincode function name "
example: put
args:
type: array
items:
type: string
targets:
type: array
items:
type: string
waitForTransactionEvent:
type: boolean
description: "respond only when transaction commits "
example: true