forked from brokermr810/QuantDinger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
5660 lines (5468 loc) · 163 KB
/
Copy pathopenapi.yaml
File metadata and controls
5660 lines (5468 loc) · 163 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
info:
description: 'Human-facing REST API for QuantDinger. Agent integrations use `/api/agent/v1`
— see `docs/agent/agent-openapi.json`. Conventions: `docs/API_CONVENTIONS.md`.'
contact:
name: QuantDinger
url: https://github.com/brokermr810/quantdinger
license:
name: See repository LICENSE
title: QuantDinger Web API
version: 1.0.0
components:
securitySchemes:
HumanJWT:
type: http
scheme: bearer
bearerFormat: JWT
description: 'User session JWT from `POST /api/auth/login`. Send as `Authorization:
Bearer <token>`.'
AgentToken:
type: http
scheme: bearer
bearerFormat: qd_agent_xxx
description: Agent Gateway token for `/api/agent/v1/*` only. See docs/agent/AGENT_QUICKSTART.md.
schemas:
Error:
type: object
properties:
code:
type: integer
description: Error code
status:
type: string
description: Error name
message:
type: string
description: Error message
errors:
type: object
description: Errors
additionalProperties: {}
additionalProperties: false
PaginationMetadata:
type: object
properties:
total:
type: integer
description: Total number of items.
total_pages:
type: integer
description: Total number of pages.
first_page:
type: integer
description: First available page number.
last_page:
type: integer
description: Last available page number.
page:
type: integer
description: Current page number.
previous_page:
type: integer
description: Previous page number.
next_page:
type: integer
description: Next page number.
additionalProperties: false
HumanSuccessEnvelope:
type: object
properties:
code:
type: integer
description: 1 on success
example: 1
msg:
type: string
example: success
data:
nullable: true
additionalProperties: false
HumanErrorEnvelope:
type: object
properties:
code:
type: integer
description: 0 on error
example: 0
msg:
type: string
data:
nullable: true
additionalProperties: false
AgentSuccessEnvelope:
type: object
properties:
code:
type: integer
description: 0 on success
example: 0
message:
type: string
data:
nullable: true
additionalProperties: false
AgentError:
type: object
properties:
code:
type: integer
message:
type: string
details:
nullable: true
retriable:
type: boolean
additionalProperties: false
PaginationMeta:
type: object
properties:
page:
type: integer
page_size:
type: integer
total:
type: integer
additionalProperties: false
ApiInfo:
type: object
properties:
name:
type: string
example: QuantDinger Python API
version:
type: string
example: 3.0.23
status:
type: string
example: running
timestamp:
type: string
format: date-time
additionalProperties: false
HealthStatus:
type: object
properties:
status:
type: string
example: healthy
timestamp:
type: string
format: date-time
additionalProperties: false
responses:
DEFAULT_ERROR:
description: Default error response
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
tags:
- name: Health
description: Liveness and API metadata (Public)
- name: Policy
description: Capability and broker policy discovery (Public)
- name: Auth
description: Authentication and OAuth (Public)
- name: Users
description: User profile and administration (Mixed)
- name: Market
description: Market data and watchlists (Public)
- name: Indicator
description: Indicator IDE workspace (Public)
- name: Backtest
description: Indicator backtesting (Public)
- name: Strategy
description: Strategy runtime and bots (Internal)
- name: Account
description: Trading account snapshots and positions (Internal)
- name: Community
description: Indicator marketplace (Public)
- name: Credentials
description: Exchange credential vault (Internal)
- name: Dashboard
description: Dashboard aggregates (Internal)
- name: Portfolio
description: Manual portfolio tracking (Internal)
- name: Settings
description: System and brand settings (Mixed)
- name: Billing
description: Membership and USDT billing (Internal)
- name: Experiment
description: Strategy tuning experiments (Internal)
- name: FastAnalysis
description: Fast AI analysis (Public)
- name: GlobalMarket
description: Global market overview (Public)
- name: AIChat
description: Legacy AI chat compatibility (Internal)
- name: QuickTrade
description: Manual quick trade (Internal)
- name: IBKR
description: Interactive Brokers adapter (Internal)
- name: Alpaca
description: Alpaca adapter (Internal)
servers:
- url: http://localhost:5000
description: Backend direct (python run.py)
- url: http://localhost:8888
description: Docker Compose (via reverse proxy)
paths:
/:
get:
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ApiInfo'
summary: API root
tags:
- Health
operationId: getApiRoot
x-visibility: public
/health:
get:
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HealthStatus'
summary: Health check
tags:
- Health
operationId: getHealth
x-visibility: public
/api/health:
get:
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HealthStatus'
summary: Health check (compat path)
tags:
- Health
description: Used by Docker health checks and reverse-proxy probes.
operationId: getApiHealthCompat
x-visibility: public
/api/policy/broker-market:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Return the full broker x market x market_type compatibility matrix.
description: "Response shape (kept stable for the frontend):\n{\n \"code\"\
: 1,\n \"data\": {\n \"broker_markets\": {\n \"ibkr\": {\"USStock\"\
: [\"spot\"]},\n \"alpaca\": {\"USStock\": [\"spot\"], \"Crypto\":\
\ [\"spot\"]},\n \"binance\": {\"Crypto\": [\"spot\", \"swap\"]},\n\
\ ...\n },\n \"long_only_brokers\": [\"alpaca\", \"ibkr\"],\n\
\ \"bot_type_markets\": {\n \"grid\": [\"Crypto\"],\n \
\ \"martingale\": [\"Crypto\"],\n \"dca\": [\"Crypto\", \"\
USStock\"],\n \"trend\": [\"Crypto\", \"USStock\"]\n },\n \
\ \"live_market_categories\": [\"Crypto\", \"USStock\"]\n }\n}"
tags:
- Policy
operationId: getApiPolicyBrokerMarket
x-visibility: public
/api/auth/security-config:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Get public security configuration for frontend.
description: 'Returns:
turnstile_enabled: bool
turnstile_site_key: str
registration_enabled: bool
oauth_google_enabled: bool
oauth_github_enabled: bool'
tags:
- Auth
operationId: getApiAuthSecurityConfig
x-visibility: public
/api/auth/login:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: User login endpoint.
description: "Request body:\n username: str\n password: str\n turnstile_token:\
\ str (optional, required if Turnstile is enabled)\n\nReturns:\n token:\
\ JWT token\n userinfo: User information"
tags:
- Auth
operationId: postApiAuthLogin
x-visibility: public
/api/auth/mfa/verify-login:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Complete a password login that was paused for TOTP verification.
tags:
- Auth
operationId: postApiAuthMfaVerifyLogin
x-visibility: public
/api/auth/login-code:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Login with email verification code (quick login / register).
description: 'Request body:
email: str
code: str (verification code)
referral_code: str (optional, referrer''s user ID - only for new users)
Login with email verification code (quick login / register).
If user doesn''t exist, create a new account automatically.'
tags:
- Auth
operationId: postApiAuthLoginCode
x-visibility: public
/api/auth/send-code:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Send verification code to email.
description: 'Request body:
email: str
type: str (register, reset_password, change_password, change_email)
turnstile_token: str (optional)'
tags:
- Auth
operationId: postApiAuthSendCode
x-visibility: public
/api/auth/register:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Register new user with email verification.
description: 'Request body:
email: str
code: str (verification code)
username: str
password: str
referral_code: str (optional, referrer''s user ID)'
tags:
- Auth
operationId: postApiAuthRegister
x-visibility: public
/api/auth/reset-password:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Reset password with email verification.
description: 'Request body:
email: str
code: str (verification code)
new_password: str'
tags:
- Auth
operationId: postApiAuthResetPassword
x-visibility: public
/api/auth/change-password:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Change password with email verification (for logged-in users).
description: 'Request body:
code: str (verification code sent to user''s email)
new_password: str'
tags:
- Auth
operationId: postApiAuthChangePassword
x-visibility: public
/api/auth/oauth/google:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Redirect to Google OAuth authorization page.
description: "Query params:\nredirect: optional front-end URL (must be allow-listed).\
\ When provided,\n after successful login the user is redirected\
\ there instead of\n the default FRONTEND_URL. Supports multi-frontend\
\ (PC + mobile)."
tags:
- Auth
operationId: getApiAuthOauthGoogle
x-visibility: public
/api/auth/oauth/google/callback:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Handle Google OAuth callback
tags:
- Auth
operationId: getApiAuthOauthGoogleCallback
x-visibility: public
/api/auth/oauth/github:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Redirect to GitHub OAuth authorization page.
description: 'Query params:
redirect: optional front-end URL (must be allow-listed), see oauth_google.'
tags:
- Auth
operationId: getApiAuthOauthGithub
x-visibility: public
/api/auth/oauth/github/callback:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Handle GitHub OAuth callback
tags:
- Auth
operationId: getApiAuthOauthGithubCallback
x-visibility: public
/api/auth/logout:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Logout (client removes token; server is stateless).
tags:
- Auth
operationId: postApiAuthLogout
x-visibility: public
/api/auth/info:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Get current user info.
tags:
- Auth
operationId: getApiAuthInfo
x-visibility: public
/api/users/list:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: List all users (admin only).
description: 'Query params:
page: int (default 1)
page_size: int (default 20, max 100)
search: str (optional, search by username/email/nickname/id)
user_id: int (optional, exact user id filter)'
tags:
- Users
operationId: getApiUsersList
x-visibility: internal
/api/users/export:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Export all users as an Excel-friendly CSV file (admin only).
tags:
- Users
operationId: getApiUsersExport
x-visibility: internal
/api/users/detail:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Get user detail by ID (admin only)
tags:
- Users
operationId: getApiUsersDetail
x-visibility: internal
/api/users/create:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Create a new user (admin only).
description: 'Request body:
username: str (required)
password: str (required)
email: str (optional)
nickname: str (optional)
role: str (optional, default ''user'')'
tags:
- Users
operationId: postApiUsersCreate
x-visibility: internal
/api/users/update:
put:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Update user information (admin only).
description: "Query params:\n id: int (required)\n\nRequest body:\n email:\
\ str (optional)\n nickname: str (optional)\n role: str (optional)\n\
\ status: str (optional)"
tags:
- Users
operationId: putApiUsersUpdate
x-visibility: internal
/api/users/delete:
delete:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Delete a user (admin only)
tags:
- Users
operationId: deleteApiUsersDelete
x-visibility: internal
/api/users/reset-password:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Reset a user's password (admin only).
description: 'Request body:
user_id: int (required)
new_password: str (required)'
tags:
- Users
operationId: postApiUsersResetPassword
x-visibility: internal
/api/users/roles:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Get available roles and their permissions
tags:
- Users
operationId: getApiUsersRoles
x-visibility: internal
/api/users/set-credits:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Set user credits (admin only).
description: 'Request body:
user_id: int (required)
credits: int (required)
remark: str (optional)'
tags:
- Users
operationId: postApiUsersSetCredits
x-visibility: internal
/api/users/set-vip:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Set user VIP status (admin only).
description: 'Request body:
user_id: int (required)
vip_days: int (optional, 0 to cancel VIP, positive number to grant VIP for
days)
vip_expires_at: str (optional, ISO format datetime, overrides vip_days if
provided)
remark: str (optional)'
tags:
- Users
operationId: postApiUsersSetVip
x-visibility: internal
/api/users/credits-log:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Get user credits log (admin only).
description: 'Query params:
user_id: int (required)
page: int (default 1)
page_size: int (default 20)'
tags:
- Users
operationId: getApiUsersCreditsLog
x-visibility: internal
/api/users/login-logs:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Paginated account login history (password / email code / OAuth).
tags:
- Users
operationId: getApiUsersLoginLogs
x-visibility: internal
/api/users/profile:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Get current user's profile with billing info and notification settings
tags:
- Users
operationId: getApiUsersProfile
x-visibility: internal
/api/users/profile/update:
put:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Update current user's profile (limited fields).
description: "Request body:\n nickname: str (optional)\n avatar: str (optional)\n\
\ timezone: str (optional, IANA id; empty = follow client)\n\nNote: Email\
\ cannot be changed after registration (for security).\n Only admin can\
\ change user email via User Management."
tags:
- Users
operationId: putApiUsersProfileUpdate
x-visibility: internal
/api/users/mfa/status:
get:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Get current user's authenticator-app MFA status.
tags:
- Users
operationId: getApiUsersMfaStatus
x-visibility: internal
/api/users/mfa/setup/start:
post:
responses:
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/HumanErrorEnvelope'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/HumanSuccessEnvelope'
summary: Start authenticator-app binding and return QR code data.
tags:
- Users
operationId: postApiUsersMfaSetupStart