-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrigetti-qcs-api-openapi.yml
More file actions
3773 lines (3581 loc) · 114 KB
/
rigetti-qcs-api-openapi.yml
File metadata and controls
3773 lines (3581 loc) · 114 KB
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
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.2
info:
x-logo: https://qcs.rigetti.com/static/img/rigetti-logo.svg
contact:
email: support@rigetti.com
url: https://rigetti.zendesk.com
title: Rigetti QCS API
version: 2020-07-31
description: >
# Introduction
This is the documentation for the Rigetti QCS HTTP API.
You can find out more about Rigetti at [https://rigetti.com](https://rigetti.com), and also
interact with QCS via the web at [https://qcs.rigetti.com](https://qcs.rigetti.com).
This API is documented in **OpenAPI format** and so is compatible with the dozens of
language-specific client generators available
[here](https://github.com/OpenAPITools/openapi-generator) and elsewhere on the web.
# Principles
This API follows REST design principles where appropriate, and otherwise an HTTP RPC paradigm.
We adhere to the Google [API Improvement Proposals](https://google.aip.dev/general) where
reasonable to provide a consistent, intuitive developer experience. HTTP response codes match
their specifications, and error messages fit a common format.
# Authentication
All access to the QCS API requires OAuth2 authentication provided by Okta. You can request
access [here](https://www.rigetti.com/get-quantum). Once you have a user account, you can download
your access token from QCS [here](https://qcs.rigetti.com/auth/token).
That access token is valid for 24 hours after issuance. The value of `access_token` within the
JSON file is the token used for authentication (don't use the entire JSON file).
Authenticate requests using the `Authorization` header and a `Bearer` prefix:
```
curl --header "Authorization: Bearer eyJraW...Iow"
```
# Quantum Processor Access
Access to the quantum processors themselves is not yet provided directly by this HTTP API, but
is instead performed over ZeroMQ/[rpcq](https://github.com/rigetti/rpcq). Until that changes,
we suggest using [pyquil](https://github.com/rigetti/pyquil) to build and execute quantum
programs via the Legacy API.
# Legacy API
Our legacy HTTP API remains accessible at https://forest-server.qcs.rigetti.com, and it shares
a source of truth with this API's services. You can use either service with the same user
account and means of authentication. We strongly recommend using the API documented here, as the
legacy API is on the path to deprecation.
servers:
- description: Rigetti API
url: https://api.qcs.rigetti.com
tags:
- description: Internal Rigetti administrative Access
name: internal
x-displayName: Internal
- description: Legacy routes and objects
name: legacy
x-displayName: Legacy
- description: The Quantum Processor is the heart of the Rigetti services.
name: quantumProcessors
x-displayName: Quantum Processors
- description: Deployments manage Controller Services and supporting services.
name: deployments
x-displayName: Quantum Processor Deployments
- description: The Endpoint is the means of access to a Quantum Processor.
name: endpoints
x-displayName: Quantum Processor Endpoints
- description: The Engagement is the authorization mechanism for access to the
Quantum Processor.
name: engagements
x-displayName: Engagements
- description: |
Translation is the process of transforming Quil into programs ready
for execution on a Quantum Processor.
name: translation
x-displayName: Translation
- name: account
x-displayName: Account
- name: authentication
x-displayName: Authentication
- description: Check for the latest SDK versions.
name: clientApplications
x-displayName: SDK Versions
- description: Find existing time on a Rigetti QPU and reserve it.
name: reservations
x-displayName: Reservations
- name: filterParameter
description: <SchemaDefinition schemaRef="#/components/schemas/Filter" />
x-displayName: Filter Parameter
- name: orderParameter
description: <SchemaDefinition schemaRef="#/components/schemas/Order" />
x-displayName: Order Parameter
- name: errors
description: >
All service errors conform to the below schema.
<SchemaDefinition schemaRef="#/components/schemas/Error" />
`code` conforms to the conventional HTTP status code, but offers more granularity.
| Code | HTTP Status Code | Notes |
|-------------------------------------|------------------|-------------------------------------------------------------------------------------|
| unauthorized | 401 | If your token expires, we will return a 401 and you should refresh it accordingly\. |
| forbidden | 403 | |
| not\_found | 404 | |
| insufficient\_payment | 402 | Insufficient funds are available to book the reservation\. |
| reservation\_unavailable | 409 | The requested reservation time is not available\. |
| invalid\_input | 422 | |
| invalid\_password\_reset\_token | 422 | |
| invalid\_email\_verification\_token | 422 | |
Additionally, errors returned with code `invalid_input` *may* include additional detail under the `validationErrors`
attribute. Note, not all validation errors will specify a `path`, but they will contain a message. Please heed those
messages *in addition to* the top level error message.
<SchemaDefinition schemaRef="#/components/schemas/ValidationError" />
x-displayName: ""
x-tagGroups:
- name: Account Management
tags:
- account
- authentication
- name: QPU Access
tags:
- endpoints
- deployments
- engagements
- quantumProcessors
- reservations
- translation
- name: SDKs
tags:
- clientApplications
- name: Filtering and ordering
tags:
- filterParameter
- orderParameter
- name: Errors
tags:
- errors
paths:
/:
get:
description: Retrieve the health status of the API
operationId: GetHealth
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/Health"
description: Critical services are healthy.
/v1/:
get:
deprecated: true
description: Endpoint to return a status 200 for load balancer health checks
operationId: HealthCheckDeprecated
responses:
"200":
content:
application/json:
schema: {}
description: Successful Response
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
description: Unprocessable Entity
summary: Health Check
/v1/endpoints:
get:
description: List all endpoints, optionally filtering by attribute.
operationId: ListEndpoints
parameters:
- description: Filtering logic specified using
[rule-engine](https://zerosteiner.github.io/rule-engine/syntax.html)
grammar
in: query
name: filter
required: false
schema:
description: Filtering logic specified using
[rule-engine](https://zerosteiner.github.io/rule-engine/syntax.html)
grammar
title: Filter
type: string
- in: query
name: pageSize
required: false
schema:
default: 10
title: Pagesize
type: integer
- in: query
name: pageToken
required: false
schema:
title: Pagetoken
type: string
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/ListEndpointsResponse"
description: Successful Response
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
description: Unprocessable Entity
security:
- JWTBearer: []
summary: List Endpoints
tags:
- endpoints
post:
description: Create an endpoint associated with your user account.
operationId: CreateEndpoint
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CreateEndpointParameters"
required: true
responses:
"201":
content:
application/json:
schema:
$ref: "#/components/schemas/Endpoint"
description: Successful Response
"400":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Bad Request
"404":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Not Found
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
description: Unprocessable Entity
security:
- JWTBearer: []
summary: Create Endpoint
tags:
- endpoints
"/v1/endpoints/{endpointId}":
delete:
description: Delete an endpoint, releasing its resources. This operation is not
reversible.
operationId: DeleteEndpoint
parameters:
- in: path
name: endpointId
required: true
schema:
title: Endpoint ID
type: string
responses:
"204":
description: Successful Response
"403":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Forbidden
"404":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Not Found
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
description: Unprocessable Entity
security:
- JWTBearer: []
summary: Delete Endpoint
tags:
- endpoints
get:
description: Retrieve a specific endpoint by its ID.
operationId: GetEndpoint
parameters:
- in: path
name: endpointId
required: true
schema:
title: Endpoint ID
type: string
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/Endpoint"
description: Successful Response
"404":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Not Found
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
description: Unprocessable Entity
security:
- JWTBearer: []
summary: Get Endpoint
tags:
- endpoints
"/v1/endpoints/{endpointId}:restart":
post:
description: Restart an entire endpoint or a single component within an endpoint.
operationId: RestartEndpoint
parameters:
- in: path
name: endpointId
required: true
schema:
title: Endpoint ID
type: string
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/RestartEndpointRequest"
responses:
"204":
description: Successful Response
"403":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Forbidden
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
description: Unprocessable Entity
security:
- JWTBearer: []
summary: Restart Endpoint
tags:
- endpoints
/v1/engagements:
post:
description: >-
Create a new engagement using the specified parameters.
At least one of the following parameters must be supplied:
- **endpointId**: The ID of the endpoint on which to engage.
- **quantumProcessorId**: The ID of the quantum processor on which to engage, allowing the
service to select a default endpoint. Ignored if **endpointId** is set.
operationId: CreateEngagement
parameters:
- description: Either the client's user ID or the name of a group on behalf of
which the client wishes to engage. May be overriden by accountId set
in body.
in: header
name: x-qcs-account-id
required: false
schema:
description: Either the client's user ID or the name of a group on behalf of
which the client wishes to engage. May be overriden by accountId
set in body.
title: X-Qcs-Account-Id
type: string
- description: Indicates whether the engagement request should be made for the
user or on behalf of a group. May be overriden by accountType set in
body.
in: header
name: x-qcs-account-type
required: false
schema:
allOf:
- $ref: "#/components/schemas/AccountType"
description: Indicates whether the engagement request should be made for the
user or on behalf of a group. May be overriden by accountType set
in body.
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CreateEngagementRequest"
required: true
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/EngagementWithCredentials"
description: Successful Response
"400":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Bad Request
"404":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Not Found
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Validation error
"503":
description: Endpoint is temporarily unavailable, try again later.
headers:
Retry-After:
description: Number of seconds to wait before retrying
schema:
type: integer
security:
- JWTBearer: []
summary: Create Engagement
tags:
- engagements
"/v1/quantumProcessors/{quantumProcessorId}/endpoints:getDefault":
get:
description: |-
Retrieve the endpoint set as "default" for the given Quantum Processor.
If no endpoint is set as the default, return "not found."
operationId: GetDefaultEndpoint
parameters:
- description: "Public identifier for a quantum processor [example: Aspen-1]"
in: path
name: quantumProcessorId
required: true
schema:
description: "Public identifier for a quantum processor [example: Aspen-1]"
title: Quantum Processor ID
type: string
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/Endpoint"
description: Successful Response
"404":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Not Found
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
description: Unprocessable Entity
security:
- JWTBearer: []
summary: Get Default Endpoint
tags:
- endpoints
"/v1/quantumProcessors/{quantum_processor_id}":
get:
tags:
- quantumProcessors
summary: Get Quantum Processor
description: Retrieve a single `QuantumProcessor` by ID.
parameters:
- name: quantum_processor_id
schema:
type: string
in: path
required: true
deprecated: false
explode: true
responses:
"200":
description: ""
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/QuantumProcessor"
"422":
description: User-provided data failed validation
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/ValidationError"
default:
description: Some other error
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/Error"
security:
- JWTBearerOptional: []
operationId: GetQuantumProcessor
/v1/quantumProcessors:
get:
tags:
- quantumProcessors
summary: List Quantum Processors
description: |-
List the [`QuantumProcessor`]s that this user is authorized to access.
If no auth token is provided, only public processors will be returned.
parameters:
- name: pageSize
schema:
type: integer
format: uint64
title: How many items to return in a single page.
default: 10
minimum: 0
exclusiveMinimum: true
in: query
required: false
deprecated: false
explode: true
- name: pageToken
schema:
type: string
title: A page token to continue pagination across requests.
in: query
required: false
deprecated: false
explode: true
responses:
"200":
description: ""
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/ListQuantumProcessorsResponse"
"422":
description: User-provided data failed validation
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/ValidationError"
default:
description: Some other error
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/Error"
security:
- JWTBearerOptional: []
operationId: ListQuantumProcessors
"/v1/quantumProcessors/{quantum_processor_id}/accessors":
get:
tags:
- quantumProcessors
summary: Get Quantum Processor Accessors
description: Retrieve a single `QuantumProcessor` by ID.
parameters:
- name: quantum_processor_id
schema:
type: string
in: path
required: true
deprecated: false
explode: true
responses:
"200":
description: ""
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/ListQuantumProcessorAccessorsResponse"
"422":
description: User-provided data failed validation
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/ValidationError"
default:
description: Some other error
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/Error"
security:
- JWTBearerOptional: []
operationId: GetQuantumProcessorAccessors
"/v1/quantumProcessors/{quantum_processor_id}/instructionSetArchitecture":
get:
tags:
- quantumProcessors
summary: Get Instruction Set Architecture
parameters:
- name: quantum_processor_id
schema:
type: string
in: path
required: true
deprecated: false
explode: true
responses:
"200":
description: ""
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/InstructionSetArchitecture"
"422":
description: User-provided data failed validation
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/ValidationError"
default:
description: Some other error
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/Error"
security:
- JWTBearerOptional: []
operationId: GetInstructionSetArchitecture
/v1/instructionSetArchitectures:
get:
tags:
- quantumProcessors
summary: List Instruction Set Architectures
parameters:
- name: pageSize
schema:
type: integer
format: uint64
title: How many items to return in a single page.
default: 5
maximum: 5
minimum: 0
exclusiveMinimum: true
in: query
required: false
deprecated: false
explode: true
- name: pageToken
schema:
type: string
title: A page token to continue pagination across requests.
in: query
required: false
deprecated: false
explode: true
responses:
"200":
description: ""
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/ListInstructionSetArchitectureResponse"
"422":
description: User-provided data failed validation
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/ValidationError"
default:
description: Some other error
content:
application/json; charset=utf-8:
schema:
$ref: "#/components/schemas/Error"
security:
- JWTBearerOptional: []
operationId: ListInstructionSetArchitectures
/v1/healthcheck:
get:
summary: Health Check
description: Check the health of the service.
responses:
"200":
description: The service is healthy, but there are no additional details.
operationId: HealthCheck
/v1/auth:emailPasswordResetToken:
post:
description: Send a password reset link to the provided email address, if that
email matches a registered user.
operationId: AuthEmailPasswordResetToken
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/AuthEmailPasswordResetTokenRequest"
responses:
"204":
description: Request completed successfully.
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Request validation failed.
summary: Email Password Reset Token
tags:
- authentication
/v1/auth:getUser:
get:
description: Retrieve the profile of the authenticated user.
operationId: AuthGetUser
parameters: []
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/User"
description: Request completed successfully.
"401":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Request authentication failed.
"404":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: The authenticated user could not be located within our records.
Please contact support@rigetti.com if you reach this error.
security:
- JWTBearer: []
summary: Get User
tags:
- authentication
/v1/auth:resetPassword:
parameters: []
post:
description: Reset the password using the user's existing password. Note, this
is an authenticated route.
operationId: AuthResetPassword
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/AuthResetPasswordRequest"
required: true
responses:
"204":
description: Password successfully reset.
"401":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Request authentication failed.
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Request validation failed.
security:
- JWTBearer: []
summary: Reset Password
tags:
- authentication
/v1/auth:resetPasswordWithToken:
parameters: []
post:
description: Complete the forgot password flow, resetting the new password in
exchange for an emailed token.
operationId: AuthResetPasswordWithToken
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/AuthResetPasswordWithTokenRequest"
required: true
responses:
"204":
description: Password successfully reset.
"404":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: No account exists for the requested email.
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Request validation failed.
summary: Reset Password With Token
tags:
- authentication
"/v1/calendars/{quantumProcessorId}":
get:
description: Get calendar details for the requested quantum processor.
operationId: GetQuantumProcessorCalendar
parameters:
- in: path
name: quantumProcessorId
required: true
schema:
type: string
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/QuantumProcessorCalendar"
description: Request completed successfully.
"403":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Client not authorized to complete request.
"404":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: The requested quantum processor does not exist.
summary: Get Quantum Processor Calendar
tags:
- reservations
security:
- JWTBearer: []
/v1/clientApplications:
get:
description: List supported clients of Rigetti system components along with
their latest and minimum supported versions.
operationId: ListClientApplications
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/ListClientApplicationsResponse"
description: Request completed successfully.
summary: List Client Applications
tags:
- clientApplications
parameters: []
"/v1/clientApplications/{clientApplicationName}":
get:
description: Get details of a specific Rigetti system component along with its
latest and minimum supported versions.
operationId: GetClientApplication
parameters:
- in: path
name: clientApplicationName
required: true
schema:
type: string
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/ClientApplication"
description: Request completed successfully.
"404":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: The requested client application does not exist.
summary: Get Client Application
tags:
- clientApplications
/v1/clientApplications:check:
post:
description: Check the requested client application version against the latest
and minimum version.
operationId: CheckClientApplication
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CheckClientApplicationRequest"
required: true
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/CheckClientApplicationResponse"
description: Successfully checked Forest versions.
"404":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Requested component does not exist.
"422":
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
description: Request validation failed.
summary: Check Client Application
tags:
- clientApplications
"/v1/groups/{groupName}/balance":
get:
description: Retrieve the balance of the requested QCS group account.
operationId: GetGroupBalance
parameters:
- description: URL encoded name of group for which to retrieve account balance.
in: path
name: groupName
required: true
schema:
type: string
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/AccountBalance"
description: Request completed successfully.
"403":
content: