-
Notifications
You must be signed in to change notification settings - Fork 0
/
abha.yaml
822 lines (782 loc) · 28 KB
/
abha.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
openapi: 3.0.0
info:
title: Abdm Abha
description: Abdm SDK for abha
version: 1.0.0
servers:
- url: https://healthidsbx.abdm.gov.in/api/v1
paths:
/registration/aadhaar/generateOtp:
post:
summary: Generate OTP
description: This endpoint generates an OTP for Aadhaar number verification.
operationId: generateOtp
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
aadhaar:
type: string
description: The Aadhaar number for which to generate the OTP.
example: '123452454590'
responses:
'200':
description: OTP generated successfully
content:
application/json:
schema:
type: object
properties:
txnId:
type: string
format: uuid
example: 'a825f76b-0696-40f3-864c-5a3a5b389a83'
description: Based on UUID
'400':
description: Bad request (e.g., missing or invalid Aadhaar number)
'401':
description: Unauthorized (invalid or missing bearer token)
'500':
description: Internal server error
security:
- bearerAuth: []
/registration/aadhaar/verifyOTP:
post:
summary: Verify OTP
description: This endpoint Verfies OTP for Aadhaar number verification.
operationId: verifyOtp
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- otp
- txnId
properties:
otp:
type: string
example: 812306
txnId:
type: string
example: a825f76b-0696-40f3-864c-5a3a5b389a83
description: Based on UUID
responses:
'200':
description: OTP Validated successfully
content:
application/json:
schema:
type: object
properties:
txnId:
type: string
format: uuid
example: 'a825f76b-0696-40f3-864c-5a3a5b389a83'
description: Based on UUID
'400':
description: Bad request (e.g., missing or invalid Aadhaar number)
'401':
description: Unauthorized (invalid or missing bearer token)
'500':
description: Internal server error
security:
- bearerAuth: []
/registration/aadhaar/generateMobileOTP:
post:
summary: Generate Mobile OTP
description: This endpoint Generates OTP for Abha verification.
operationId: generateMobileOtp
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- mobile
- txnId
properties:
mobile:
type: string
example: 9545812125
txnId:
type: string
example: a825f76b-0696-40f3-864c-5a3a5b389a83
description: Based on UUID
responses:
'200':
description: OTP Generated successfully
content:
application/json:
schema:
type: object
properties:
txnId:
type: string
format: uuid
example: 'a825f76b-0696-40f3-864c-5a3a5b389a83'
description: Based on UUID
'400':
description: Bad request (e.g., missing or invalid Aadhaar number)
'401':
description: Unauthorized (invalid or missing bearer token)
'500':
description: Internal server error
security:
- bearerAuth: []
/registration/aadhaar/verifyMobileOTP:
post:
summary: Verify Mobile OTP
description: This endpoint Verfies OTP for Abha verification.
operationId: verifyMobileOtp
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- otp
- txnId
properties:
otp:
type: string
example: 812306
txnId:
type: string
example: a825f76b-0696-40f3-864c-5a3a5b389a83
description: Based on UUID
responses:
'200':
description: OTP Verified successfully
content:
application/json:
schema:
type: object
properties:
txnId:
type: string
format: uuid
example: 'a825f76b-0696-40f3-864c-5a3a5b389a83'
description: Based on UUID
'400':
description: Bad request (e.g., missing or invalid Aadhaar number)
'401':
description: Unauthorized (invalid or missing bearer token)
'500':
description: Internal server error
security:
- bearerAuth: []
/registration/aadhaar/createHealthIdWithPreVerified:
post:
summary: Health ID creation
description: This endpoint Creates Health Id .
operationId: createHealthIdWithPreVerified
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
email:
type: string
example: [email protected]
firstName:
type: string
example: manoj
healthId:
type: string
example: deepak.pant
lastName:
type: string
example: singh
middleName:
type: string
example: kishan
password:
type: string
example: India@143
profilePhoto:
type: string
example: /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkJCQkJCQoLCwoODw0PDhQSERESFB4WFxYXFh4uHSEdHSEdLikxKCUoMSlJOTMzOUlUR0NHVGZbW2aBeoGoqOIBCQkJCQkJCgsLCg4PDQ8OFBIRERIUHhYXFhcWHi4dIR0dIR0uKTEoJSgxKUk5MzM5SVRHQ0dUZltbZoF6gaio4v/CABEIBLAHgAMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAACAwABBAUGB//aAAgBAQAAAADwawLpMspcK7qrlE5F0Vtul2bVywMUNeBHUkW/bmxvYELGuNjh2VDvixxo5ViljKjDRMoahCULjs2JCShjhjh2OGxo0Y2MoXHOLszsKLhw7tD99mpZQxj8xceofmLEKFwXLTIyHwY1Ls+iEotjHY0M0pjRYxtGj4VFKLPohQlFQyy4Qipc0XG9pS+CP/2Q==
description: Encoded with Base 64
txnId:
type: string
example: a825f76b-0696-40f3-864c-5a3a5b389a83
description: Based on UUID
responses:
'200':
description: Health Id Created successfully
content:
application/json:
schema:
type: object
properties:
authMethods:
type: array
example: AADHAAR_OTP
description: Based on authMethods
items:
type: string
enum:
- AADHAAR_OTP
- MOBILE_OTP
- PASSWORD
- DEMOGRAPHICS
- AADHAAR_BIO
dayOfBirth:
type: string
example: 23
districtCode:
type: string
example: 401
districtName:
type: string
example: Pune
email:
type: string
example: [email protected]
firstName:
type: string
example: akash
gender:
type: string
example: M
enum:
- M
- F
- O
- U
healthId:
type: string
example: deepak.pant
healthIdNumber:
type: string
example: 43-4221-5105-6749
kycPhoto:
type: string
example: /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkJCQkJCQoLCwoODw0PDhQSERESFB4WFxYXFh4uHSEdHSEdLikxKCUoMSlJOTMzOUlUR0NHVGZbW2aBeoGoqOIBCQkJCQkJCgsLCg4PDQ8OFBIRERIUHhYXFhcWHi4dIR0dIR0uKTEoJSgxKUk5MzM5SVRHQ0dUZltbZoF6gaio4v/CABEIBLAHgAMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAACAwABBAUGB//aAAgBAQAAAADwawLpMspcK7qrlE5F0Vtul2bVywMUNeBHUkW/bmxvYELGuNjh2VDvixxo5ViljKjDRMoahCULjs2JCShjhjh2OGxo0Y2MoXHOLszsKLhw7tD99mpZQxj8xceofmLEKFwXLTIyHwY1Ls+iEotjHY0M0pjRYxtGj4VFKLPohQlFQyy4Qipc0XG9pS+CP/2Q==
description: Encoded with Base 64
lastName:
type: string
example: singh
middleName:
type: string
example: pramod
mobile:
type: string
example: 9545812125
monthOfBirth:
type: string
example: '05'
name:
type: string
example: kishan kumar singh
new:
type: boolean
profilePhoto:
type: string
example: /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkJCQkJCQoLCwoODw0PDhQSERESFB4WFxYXFh4uHSEdHSEdLikxKCUoMSlJOTMzOUlUR0NHVGZbW2aBeoGoqOIBCQkJCQkJCgsLCg4PDQ8OFBIRERIUHhYXFhcWHi4dIR0dIR0uKTEoJSgxKUk5MzM5SVRHQ0dUZltbZoF6gaio4v/CABEIBLAHgAMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAACAwABBAUGB//aAAgBAQAAAADwawLpMspcK7qrlE5F0Vtul2bVywMUNeBHUkW/bmxvYELGuNjh2VDvixxo5ViljKjDRMoahCULjs2JCShjhjh2OGxo0Y2MoXHOLszsKLhw7tD99mpZQxj8xceofmLEKFwXLTIyHwY1Ls+iEotjHY0M0pjRYxtGj4VFKLPohQlFQyy4Qipc0XG9pS+CP/2Q==
description: Encoded with Base 64
refreshToken:
type: string
example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
description: JWT Bearer Token
stateCode:
type: string
example: 27
stateName:
type: string
example: MAHARASHTRA
tags:
type: object
additionalProperties:
type: string
token:
type: string
example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
description: JWT Bearer Token
yearOfBirth:
type: string
example: 1995
'400':
description: Bad request (e.g., missing or invalid Aadhaar number)
'401':
description: Unauthorized (invalid or missing bearer token)
'500':
description: Internal server error
security:
- bearerAuth: []
/auth/init:
post:
summary: auth-aadhar-init
description: This endpoint Initiates Aadhar Authentication
operationId: authAadharInit
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- authMethod
- healthid
properties:
authMethod:
type: string
healthid:
type: string
responses:
'200':
description: Transaction Id
content:
application/json:
schema:
type: object
properties:
txnId:
type: string
format: uuid
example: 'a825f76b-0696-40f3-864c-5a3a5b389a83'
description: Based on UUID
'400':
description: Bad request (e.g., missing or invalid Aadhaar number)
'401':
description: Unauthorized (invalid or missing bearer token)
'500':
description: Internal server error
security:
- bearerAuth: []
/auth/resendAuthOTP:
post:
summary: resend-auth-aadhar-init
description: This endpoint Initiates Resends Aadhar Authentication
operationId: resendAuthOTP
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- authMethod
- txnId
properties:
authMethod:
type: string
txnId:
type: string
format: uuid
example: 'a825f76b-0696-40f3-864c-5a3a5b389a83'
description: Based on UUID
responses:
'200':
description: Transaction Id
content:
application/json:
schema:
type: object
properties:
txnId:
type: string
format: uuid
example: 'a825f76b-0696-40f3-864c-5a3a5b389a83'
description: Based on UUID
'400':
description: Bad request (e.g., missing or invalid Aadhaar number)
'401':
description: Unauthorized (invalid or missing bearer token)
'500':
description: Internal server error
security:
- bearerAuth: []
/auth/confirmWithAadhaarOtp:
post:
summary: aadhar-otp-confirm
description: This endpoint Confirms Aadhar Authentication
operationId: confirmWithAadhaarOtp
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- authMethod
- txnId
properties:
authMethod:
type: string
txnId:
type: string
format: uuid
example: 'a825f76b-0696-40f3-864c-5a3a5b389a83'
description: Based on UUID
responses:
'200':
description: Transaction Id
content:
application/json:
schema:
type: object
properties:
txnId:
type: string
format: uuid
example: 'a825f76b-0696-40f3-864c-5a3a5b389a83'
description: Based on UUID
'400':
description: Bad request (e.g., missing or invalid Aadhaar number)
'401':
description: Unauthorized (invalid or missing bearer token)
'500':
description: Internal server error
security:
- bearerAuth: []
/account/profile:
get:
summary: Get account information.
description: "<b>Explanation</b>\t- Api Accepts <b>Auth Token</b> and then Returns Account Details.\r\n\r\n<b>Request Body</b>\t- Required\r\n\r\n<b>Responce</b>\t- Api Accepts <b>Auth Token</b> and then Returns Account Details. Returns Error for <b>Unauthorized Auth Token</b>."
operationId: getAccountInformationUsingGET
parameters:
- name: Accept-Language
in: header
description: Access Token.
required: true
schema:
type: string
- name: X-Token
in: header
description: Access Token.
required: true
schema:
type: string
responses:
'200':
description: Return Account details in case of success
content:
application/json:
schema:
type: object
properties:
address:
type: string
example: b-14 someshwar nagar
authMethods:
type: array
example: AADHAAR_OTP
description: Based on authMethods
items:
type: string
enum:
- AADHAAR_OTP
- MOBILE_OTP
- PASSWORD
- DEMOGRAPHICS
- AADHAAR_BIO
dayOfBirth:
type: string
example: 31
districtCode:
type: string
example: 401
districtName:
type: string
example: Pune
email:
type: string
example: [email protected]
emailVerified:
type: boolean
firstName:
type: string
example: kishan
gender:
type: string
example: Male
healthId:
type: string
example: deepakndhm
healthIdNumber:
type: string
example: 43-4221-5105-6749
kycPhoto:
type: string
example: sw1uD+gpv3fj6NHBNhtcII3GksVtkLT9bvcz0svYDyUt/x3jTtedXSYgw4b90GTwfLfs1eow056VsOw9HFS/wB8uH5Ysx+QzpL7PxmAY1WOHwOj04sPKN6Dw8XY8vcXovtvZc1dUB+TPAlGGPNu8iqMVPetukysjRxgbNdLLKMxn46rIRb8NieeyuDx1EHa90jJP9KwKGZdsLr08BysrmMJExzTO9FT93CzoNg50/nxzaQgmkBSbu9D8DxJm7XrLzWSUB05YCknHbokm4iXwyYBsrmfFDE/xCDfzYPhYyhtEmOi4J/GMp+lO+gAHQFQtxkIADhoSR8WXGcAbCUj7uTjFsBU/tc+RtvSotso4FXy8v+Ylzj28jbFTmmOWyAwYi9pThQjXnmRnq43dVdd5OXmxIII6SXs0JzoFvKwSk7VxhuLIRYzKqrkfcnWMrrmRgE8xZ6ZLft6O3IeiHb9WA8b/6/qO8Hdd17FKsSF6te59gSpoajS0FtQIgFn/c+NHzQYo5ZdsuRGM9v+bhHTInI=
description: Encoded with Base 64
kycVerified:
type: boolean
example: true
lastName:
type: string
example: singh
middleName:
type: string
example: kumar
mobile:
type: string
example: 9545812125
monthOfBirth:
type: string
example: '05'
name:
type: string
example: kishan kumar singh
new:
type: boolean
phrAddress:
type: array
items:
type: string
pincode:
type: string
example: 412306
profilePhoto:
type: string
example: /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkJCQkJCQoLCwoODw0PDhQSERESFB4WFxYXFh4uHSEdHSEdLikxKCUoMSlJOTMzOUlUR0NHVGZbW2aBeoGoqOIBCQkJCQkJCgsLCg4PDQ8OFBIRERIUHhYXFhcWHi4dIR0dIR0uKTEoJSgxKUk5MzM5SVRHQ0dUZltbZoF6gaio4v/CABEIBLAHgAMBIgACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAACAwABBAUGB//aAAgBAQAAAADwawLpMspcK7qrlE5F0Vtul2bVywMUNeBHUkW/bmxvYELGuNjh2VDvixxo5ViljKjDRMoahCULjs2JCShjhjh2OGxo0Y2MoXHOLszsKLhw7tD99mpZQxj8xceofmLEKFwXLTIyHwY1Ls+iEotjHY0M0pjRYxtGj4VFKLPohQlFQyy4Qipc0XG9pS+CP/2Q==
description: Encoded with Base 64
stateCode:
type: string
example: 27
stateName:
type: string
example: MAHARASHTRA
subDistrictCode:
type: string
example: 213
subdistrictName:
type: string
example: Baramati
tags:
type: object
additionalProperties:
type: string
townCode:
type: string
example: 27
townName:
type: string
example: Baramati
verificationStatus:
type: string
example: verified
verificationType:
type: string
example: testing
villageCode:
type: string
example: 412
villageName:
type: string
example: Someshwar Nagar
wardCode:
type: string
example: '08'
wardName:
type: string
example: Sinhgad fort ward
yearOfBirth:
type: string
example: 1994
'400':
description: Bad request, check request before retrying
'401':
description: Unauthorized Access.
'403':
description: Forbidden
'404':
description: Not Found
'422':
description: Could not Get account information or Invalid Token
'500':
description: |-
Downstream system(s) is down.
Unhandled exceptions.
security:
- bearerAuth: []
/account/qrCode:
get:
summary: Get Quick Response code in PNG format for this account.
description: "<b>Explanation</b>\t- Api Accepts <b>Auth Token</b> and then returns Account Info for QR Code.\r\n\r\n<b>Request Body</b>\t- Required\r\n\r\n<b>Responce</b>\t- Api Accepts <b>Auth Token</b> and then returns Account Info for QR Code. Returns Error for <b>Unauthorized Token</b>."
operationId: getQrCodeUsingGET
parameters:
- name: Accept-Language
in: header
description: Access Token.
required: true
schema:
type: string
- name: X-Token
in: header
description: Access Token.
required: true
schema:
type: string
responses:
'200':
description: Return QR Code in Byte Array Form in case of success
content:
application/json:
schema:
type: string
format: byte
'400':
description: Bad request, check request before retrying
'401':
description: Unauthorized Access.
'403':
description: Forbidden
'404':
description: Not Found
'422':
description: Expired or Invalid Token
'500':
description: |-
Downstream system(s) is down.
Unhandled exceptions.
security:
- bearerAuth: []
/account/getSvgCard:
get:
summary: Generate ABHA card SVG
description: "<b>Explanation</b>\t- Api Accepts <b>Auth Token</b> and then Returns Account Details for SVG format.\r\n\r\n<b>Request Body</b>\t- Required\r\n\r\n<b>Responce</b>\t- Api Accepts <b>Auth Token</b> and then Returns Account Details for SVG format. Returns Error for <b>Unauthorized Auth Token</b>."
operationId: generateSvgCardUsingGET
parameters:
- name: Accept-Language
in: header
description: Access Token.
required: true
schema:
type: string
- name: X-Token
in: header
description: Access Token.
required: true
schema:
type: string
responses:
'200':
description: Return details in case of success
content:
application/json:
schema:
type: string
format: byte
'400':
description: Bad request, check request before retrying
'401':
description: Unauthorized Access.
'403':
description: Forbidden
'404':
description: Not Found
'422':
description: Could not generate Card or Invalid Token
'500':
description: |-
Downstream system(s) is down.
Unhandled exceptions.
security:
- bearerAuth: []
/account/getPngCard:
get:
summary: Generate ABHA card PNG
description: "<b>Explanation</b>\t- Api Accepts <b>Auth Token</b> and then Returns Account Details for PNG format.\r\n\r\n<b>Request Body</b>\t- Required\r\n\r\n<b>Responce</b>\t- Api Accepts <b>Auth Token</b> and then Returns Account Details for PNG format. Returns Error for <b>Unauthorized Auth Token</b>."
operationId: generatePngCardUsingGET
parameters:
- name: Accept-Language
in: header
description: Access Token.
required: true
schema:
type: string
- name: X-Token
in: header
description: Access Token.
required: true
schema:
type: string
responses:
'200':
description: Return details in case of success
content:
application/json:
schema:
type: object
properties:
byteArray:
type: string
format: byte
description:
type: string
filename:
type: string
open:
type: boolean
readable:
type: boolean
'400':
description: Bad request, check request before retrying
'401':
description: Unauthorized Access.
'403':
description: Forbidden
'404':
description: Not Found
'422':
description: Could not generate Card or Invalid Token
'500':
description: |-
Downstream system(s) is down.
Unhandled exceptions.
security:
- bearerAuth: []
/account/getCard:
get:
summary: Generate ABHA card in PDF format
description: "<b>Explanation</b>\t- Api Accepts <b>Auth Token</b> and then Returns Account Details for PDF format.\r\n\r\n<b>Request Body</b>\t- Required\r\n\r\n<b>Responce</b>\t- Api Accepts <b>Auth Token</b> and then Returns Account Details for PDF format. Returns Error for <b>Unauthorized Auth Token</b>."
operationId: generateCardUsingGET
parameters:
- name: Accept-Language
in: header
description: Access Token.
required: true
schema:
type: string
- name: X-Token
in: header
description: Access Token.
required: true
schema:
type: string
responses:
'200':
description: Return details in case of success
'400':
description: Bad request, check request before retrying
'401':
description: Unauthorized Access.
'403':
description: Forbidden
'404':
description: Not Found
'422':
description: Could not generate Card or Invalid Token
'500':
description: |-
Downstream system(s) is down.
Unhandled exceptions.
security:
- bearerAuth: []
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT