This repository was archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhelp.json
1854 lines (1854 loc) · 127 KB
/
help.json
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
{
"events": {
"AgentResourceEvent": "",
"OnJsonApiEvent": "Fired when a resource is changed.",
"OnJsonApiEvent_age-restriction_v1_age-restriction": "",
"OnJsonApiEvent_agent_v1_requests": "",
"OnJsonApiEvent_agent_v1_session": "",
"OnJsonApiEvent_anti-addiction_v1_products": "",
"OnJsonApiEvent_app-command_v1_auth": "",
"OnJsonApiEvent_app-command_v1_focus-request": "",
"OnJsonApiEvent_chat_v1_session": "",
"OnJsonApiEvent_chat_v1_settings": "",
"OnJsonApiEvent_chat_v2_friendrequests": "",
"OnJsonApiEvent_chat_v2_session": "",
"OnJsonApiEvent_chat_v3_blocked": "",
"OnJsonApiEvent_chat_v3_errors": "",
"OnJsonApiEvent_chat_v3_friendrequests": "",
"OnJsonApiEvent_chat_v3_friends": "",
"OnJsonApiEvent_chat_v3_groups": "",
"OnJsonApiEvent_chat_v3_me": "",
"OnJsonApiEvent_chat_v4_blocked": "",
"OnJsonApiEvent_chat_v4_conversations": "",
"OnJsonApiEvent_chat_v4_friendrequests": "",
"OnJsonApiEvent_chat_v4_friends": "",
"OnJsonApiEvent_chat_v4_groups": "",
"OnJsonApiEvent_chat_v4_presences": "",
"OnJsonApiEvent_chat_v5_conversations": "",
"OnJsonApiEvent_chat_v5_friendrequests": "",
"OnJsonApiEvent_chat_v5_messages": "",
"OnJsonApiEvent_chat_v5_participants": "",
"OnJsonApiEvent_chat_v6_conversations": "",
"OnJsonApiEvent_chat_v6_friendrequests": "",
"OnJsonApiEvent_chat_v6_messages": "",
"OnJsonApiEvent_chat_v7_conversations": "",
"OnJsonApiEvent_client-config_v1_status": "",
"OnJsonApiEvent_client-config_v2_config": "",
"OnJsonApiEvent_client-config_v2_namespace": "",
"OnJsonApiEvent_client-feature-flags_v1_debug": "",
"OnJsonApiEvent_client-feature-flags_v1_flags": "",
"OnJsonApiEvent_config_v1_config_name": "",
"OnJsonApiEvent_cookie-jar_v1_cookies": "",
"OnJsonApiEvent_data-store_v1_install-settings": "",
"OnJsonApiEvent_data-store_v1_private-settings": "",
"OnJsonApiEvent_data-store_v1_product-settings": "",
"OnJsonApiEvent_entitlements_v1_token": "",
"OnJsonApiEvent_entitlements_v2_token": "",
"OnJsonApiEvent_eula_v1_agreement": "",
"OnJsonApiEvent_eula_v1_external-legal-links": "",
"OnJsonApiEvent_eula_v1_privacy-policy": "",
"OnJsonApiEvent_game-session_v1_clusters": "",
"OnJsonApiEvent_game-session_v1_sessions": "",
"OnJsonApiEvent_loyalty_v1_loyalty-event-urls": "",
"OnJsonApiEvent_loyalty_v1_loyalty-resource": "",
"OnJsonApiEvent_loyalty_v1_loyalty-users": "",
"OnJsonApiEvent_mobile-product-registry_v1_build-number": "",
"OnJsonApiEvent_mobile-product-registry_v1_is-game-obsolete": "",
"OnJsonApiEvent_native-ux_v1_should-keep-game-up-to-date": "",
"OnJsonApiEvent_patch_v1_installs": "",
"OnJsonApiEvent_patch_v2_products": "",
"OnJsonApiEvent_patch_v2_requests": "",
"OnJsonApiEvent_pay-mobile_v1_productListResult": "",
"OnJsonApiEvent_pay-mobile_v1_purchaseResult": "",
"OnJsonApiEvent_player-account_aliases_v1": "",
"OnJsonApiEvent_player-account_promotion_v1": "",
"OnJsonApiEvent_player-account_regions_v1": "",
"OnJsonApiEvent_player-account_vng_v1": "",
"OnJsonApiEvent_player-affinity_config_v1": "",
"OnJsonApiEvent_player-affinity_product_v1": "",
"OnJsonApiEvent_player-affinity_product_v2": "",
"OnJsonApiEvent_player-preferences_v1_ready": "",
"OnJsonApiEvent_player-reporting_v1_reporter-feedback": "",
"OnJsonApiEvent_plugin-manager_v1_status": "",
"OnJsonApiEvent_process-control_v1_process": "",
"OnJsonApiEvent_product-integration-deps_v1_app-repair": "",
"OnJsonApiEvent_product-integration-deps_v1_app-update": "",
"OnJsonApiEvent_product-integration_v1_app-update": "",
"OnJsonApiEvent_product-localization_v1_data": "",
"OnJsonApiEvent_product-localization_v1_products": "",
"OnJsonApiEvent_product-metadata_v1_cookies": "",
"OnJsonApiEvent_product-metadata_v1_definitions": "",
"OnJsonApiEvent_product-metadata_v1_products": "",
"OnJsonApiEvent_product-metadata_v1_publish-states": "",
"OnJsonApiEvent_product-metadata_v2_products": "",
"OnJsonApiEvent_product-metadata_v2_region-locale": "",
"OnJsonApiEvent_product-session_v1_external-sessions": "",
"OnJsonApiEvent_product-session_v1_host-session": "",
"OnJsonApiEvent_product-session_v1_session-heartbeats": "",
"OnJsonApiEvent_product-session_v1_sessions": "",
"OnJsonApiEvent_restriction_v1_launchRestrictedProducts": "",
"OnJsonApiEvent_restriction_v1_launchRestrictions": "",
"OnJsonApiEvent_restriction_v1_ready": "",
"OnJsonApiEvent_rewards_v1_product": "",
"OnJsonApiEvent_rewards_v1_ready": "",
"OnJsonApiEvent_riot-client-app-command_v1_uri-handler": "",
"OnJsonApiEvent_riot-client-auth_v1_authorization": "",
"OnJsonApiEvent_riot-client-auth_v1_home-base-country": "",
"OnJsonApiEvent_riot-client-auth_v1_login-country": "",
"OnJsonApiEvent_riot-client-auth_v1_rso-client": "",
"OnJsonApiEvent_riot-client-auth_v1_userinfo": "",
"OnJsonApiEvent_riot-client-lifecycle-state_v1_state": "",
"OnJsonApiEvent_riot-client-lifecycle_v1_league-region-election": "",
"OnJsonApiEvent_riot-client-lifecycle_v1_product-context": "",
"OnJsonApiEvent_riot-client-lifecycle_v1_ux-command": "",
"OnJsonApiEvent_riot-login_v1_login-result-detail": "",
"OnJsonApiEvent_riot-login_v1_status": "",
"OnJsonApiEvent_riot-messaging-service_v1_message": "",
"OnJsonApiEvent_riot-messaging-service_v1_out-of-sync": "",
"OnJsonApiEvent_riot-messaging-service_v1_session": "",
"OnJsonApiEvent_riot-messaging-service_v1_state": "",
"OnJsonApiEvent_riot-status_v1_products": "",
"OnJsonApiEvent_riotclient_affinity": "",
"OnJsonApiEvent_riotclient_app-name": "",
"OnJsonApiEvent_riotclient_authenticated-connection": "",
"OnJsonApiEvent_riotclient_new-args": "",
"OnJsonApiEvent_riotclient_product-locales": "",
"OnJsonApiEvent_riotclient_product-locales_products": "",
"OnJsonApiEvent_riotclient_region-locale": "",
"OnJsonApiEvent_riotclient_session-id": "",
"OnJsonApiEvent_riotclient_zoom-scale": "",
"OnJsonApiEvent_rnet-lifecycle_v1_league-region-election": "",
"OnJsonApiEvent_rnet-lifecycle_v1_product-context": "",
"OnJsonApiEvent_rnet-lifecycle_v1_product-context-phase": "",
"OnJsonApiEvent_rnet-lifecycle_v2_ux-command": "",
"OnJsonApiEvent_rnet-pft_v1_surveys": "",
"OnJsonApiEvent_rnet-product-registry_v1_background-patching": "",
"OnJsonApiEvent_rnet-product-registry_v1_install-states": "",
"OnJsonApiEvent_rnet-product-registry_v1_move-install-states": "",
"OnJsonApiEvent_rnet-product-registry_v4_available-product-locales": "",
"OnJsonApiEvent_rnet-product-registry_v4_install-settings": "",
"OnJsonApiEvent_rnet-product-registry_v4_patch-states": "",
"OnJsonApiEvent_rnet-product-registry_v4_player-products-state": "",
"OnJsonApiEvent_rnet-product-registry_v4_priority-patch-requests": "",
"OnJsonApiEvent_rnet-product-registry_v4_products": "",
"OnJsonApiEvent_rnet-product-registry_v4_public-products-state": "",
"OnJsonApiEvent_rnet-sanitizer_v1_status": "",
"OnJsonApiEvent_rnet-self-update_v1_status": "",
"OnJsonApiEvent_rso-auth_configuration_v3": "",
"OnJsonApiEvent_rso-auth_v1_auth-hints": "",
"OnJsonApiEvent_rso-auth_v1_authorization": "",
"OnJsonApiEvent_rso-auth_v1_logout-reason": "",
"OnJsonApiEvent_rso-auth_v1_session": "",
"OnJsonApiEvent_rso-auth_v1_status-message": "",
"OnJsonApiEvent_rso-auth_v1_userinfo": "",
"OnJsonApiEvent_rso-auth_v2_authorizations": "",
"OnJsonApiEvent_rso-authenticator_v1_authentication": "",
"OnJsonApiEvent_rso-authenticator_v1_config": "",
"OnJsonApiEvent_rso-mobile-ui_v1_account-promotion": "",
"OnJsonApiEvent_rso-mobile-ui_v1_eula": "",
"OnJsonApiEvent_rso-mobile-ui_v1_login": "",
"OnJsonApiEvent_rso-mobile-ui_v1_region-election": "",
"OnJsonApiEvent_rso-mobile-ui_v1_vng": "",
"OnJsonApiEvent_rso-mobile-ui_v2_eula": "",
"OnJsonApiEvent_scd_v1_cookies": "",
"OnJsonApiEvent_scd_v1_enabled": "",
"OnJsonApiEvent_scd_v1_enabled-in-config": "",
"OnJsonApiEvent_vanguard_v1_status": "",
"OnJsonApiEvent_voice-chat_v1_active-product": "",
"OnJsonApiEvent_voice-chat_v1_audio-properties": "",
"OnJsonApiEvent_voice-chat_v1_push-to-talk": "",
"OnJsonApiEvent_voice-chat_v2_devices": "",
"OnJsonApiEvent_voice-chat_v2_push-to-talk": "",
"OnJsonApiEvent_voice-chat_v2_sessions": "",
"OnJsonApiEvent_voice-chat_v2_settings": "",
"OnJsonApiEvent_voice-chat_v2_state": "",
"OnJsonApiEvent_voice-chat_v3_sessions": "",
"OnJsonApiEvent_voice-chat_v3_settings": "",
"OnLcdsEvent": "Fired when a message is received over the LCDS connection.",
"OnRegionLocaleChanged": "",
"OnServiceProxyAsyncEvent": "Fired when an async service proxy message is received.",
"OnServiceProxyMethodEvent": "Fired when a method-based service proxy message is received.",
"OnServiceProxyUuidEvent": "Fired when a uuid-based service proxy message is received."
},
"functions": {
"DeleteAgentV1RequestsThirdPartyDependencyByRequestId": "Cancel a third party dependency job",
"DeleteAgentV1Session": "Stop the agent",
"DeleteAppCommandV1AuthStatus": "Deletes the stored authentication status",
"DeleteAppCommandV1FocusRequest": "Delete the current app focus request, if one exists",
"DeleteChatV2FriendrequestsByPid": "Remove or decline friend request",
"DeleteChatV2Me": "Delete multi-game presence of a specific product",
"DeleteChatV3Blocked": "Unblock a player",
"DeleteChatV3Errors": "Delete a specific error",
"DeleteChatV3Friendrequests": "Remove or decline friend request",
"DeleteChatV3Friends": "Remove friend",
"DeleteChatV3Groups": "Delete a friend group",
"DeleteChatV3Me": "Delete multi-game presence of a specific product",
"DeleteChatV4Blocked": "Unblock a player",
"DeleteChatV4ConversationsActive": "Clear active conversation",
"DeleteChatV4ConversationsByCid": "Delete or leave a conversation by cid",
"DeleteChatV4ConversationsByCidMessages": "Clear conversation message history",
"DeleteChatV4Friendrequests": "Remove or decline friend request",
"DeleteChatV4Friends": "Remove friend",
"DeleteChatV4Groups": "Delete a friend group",
"DeleteChatV5Conversations": "Delete or leave a conversation",
"DeleteChatV5ConversationsActive": "Clear active conversation",
"DeleteChatV5Friendrequests": "Remove or decline friend request",
"DeleteChatV5Messages": "Clear conversation message history",
"DeleteChatV6Conversations": "Delete or leave a conversation",
"DeleteChatV6ConversationsActive": "Clear active conversation",
"DeleteChatV6Friendrequests": "Remove or decline friend request",
"DeleteChatV6Messages": "Clear conversation message history",
"DeleteChatV7Conversations": "Delete or leave a conversation",
"DeleteChatV7ConversationsActive": "Clear active conversation",
"DeleteClientConfigV1Authorization": "Removes the authorization. Triggers revocation of player configuration.",
"DeleteClientConfigV2EntitlementsToken": "Deletes the entitlements token, if set. Triggers revocation of player configuration.",
"DeleteClientFeatureFlagsV1DebugMockMode": "Leaves mock mode, and deletes mock data.",
"DeleteClientFeatureFlagsV1DebugOverridesFlagsByNamespaceByFlag": "Removes an override for a feature flag.",
"DeleteCookieJarV1Cookies": "Delete existing cookies.",
"DeleteGameSessionV1SessionsBySessionId": "Requests to disconnect the player from the session.",
"DeleteInfoRadiatorV1CustomHeartbeatMetricByName": "Delete a custom heartbeat metric, if it exists",
"DeletePatchV1InstallsByInstallId": "Delete the install resource",
"DeletePatchV1InstallsByInstallIdRequestsPatch": "Delete patch request for install",
"DeletePatchV1InstallsByInstallIdRequestsPreview": "Delete preview request for install",
"DeletePatchV1InstallsByInstallIdRequestsRepair": "Delete the repair request, interrupting any ongoing repair operations.",
"DeletePatchV1InstallsByInstallIdRequestsSeed": "Delete seed request for install",
"DeleteProductIntegrationDepsV1AppRepairApplyRequestsProductsByProductIdPatchlinesByPatchlineId": "Removes a apply request.",
"DeleteProductIntegrationDepsV1AppUpdateApplyRequestsProductsByProductIdPatchlinesByPatchlineId": "Removes a apply request.",
"DeleteProductLauncherV1DefaultProduct": "Closes the launched default product.",
"DeleteProductLauncherV1PartnerProduct": "Closes the launched partner product.",
"DeleteProductLauncherV1ProductsByProductIdPatchlinesByPatchlineId": "Closes the launched product-patchline.",
"DeleteProductLauncherV1ProductsByProductIdPatchlinesByPatchlineIdRogueProcessByProcessNameByProcessId": "Closes a whitelisted rogue process associated with a product.",
"DeleteProductMetadataV1DebugMockMode": "Leaves mock mode, and deletes mock data.",
"DeleteProductSessionV1SessionsBySessionId": "Handles deleting a session.",
"DeleteRiotClientLifecycleV1ProductContext": "Deletes the existing product context, if it exists.",
"DeleteRiotClientLifecycleV1UxCommand": "Deletes the current UX command so that the default client UX app no longer needs to process it",
"DeleteRiotMessagingServiceV1Connect": "Schedule a disconnect request from RMS.",
"DeleteRiotMessagingServiceV1Entitlements": "Delete session entitlements token",
"DeleteRiotMessagingServiceV1Session": "Kill the current session, if any.",
"DeleteRiotMessagingServiceV1Socket": "Schedule a socket kill request. For debug purposes only.",
"DeleteRiotclientAffinity": "Deletes the current runtime affinity of the application.",
"DeleteRiotclientSplash": "Hide the splash screen.",
"DeleteRiotclientV1AuthTokensByAuthToken": "Unregister an existing auth token.",
"DeleteRnetLifecycleV1ProductContext": "Deletes the existing product context, if it exists.",
"DeleteRnetLifecycleV2UxCommand": "Deletes the current UX command so that the default client UX app no longer needs to process it",
"DeleteRnetProductRegistryV4PatchRequestsProductsByProductIdPatchlinesByPatchlineId": "Delete patch request for patchline. This will stop any patch in progress.",
"DeleteRnetProductRegistryV4PriorityPatchRequestsProductsByProductIdPatchlinesByPatchlineId": "Stops a priority patch operation for a given product and patchline, if in progress.",
"DeleteRnetProductRegistryV4SessionPatchLockProductsByProductIdPatchlineByPatchlineId": "Releases a shared session patch lock for the product-patchline",
"DeleteRsoAuthV1AuthHintsHint": "Dismisses the current auth hint",
"DeleteRsoAuthV1Authorization": "Revoke existing tokens, logging the user out.",
"DeleteRsoAuthV1AuthorizationUserinfo": "Delete the player userinfo",
"DeleteRsoAuthV1Config": "Reset the RSO endpoint configuration.",
"DeleteRsoAuthV1Session": "Destroy the login session.",
"DeleteRsoAuthV1UserinfoByClientId": "This endpoint is not available until the OpenID configuration is retrieved.",
"DeleteRsoAuthV2AuthorizationsByClientId": "Remove the local instance of the authorization for the client-id.",
"DeleteRsoAuthV2Config": "Reset the RSO endpoint configuration.",
"DeleteRsoAuthenticatorV1Authentication": "Delete the current authentication session.",
"DeleteRsoMobileUiV1RegionElection": "Programmatically dismiss the Region Election UI. Note that this endpoit returns immediately, but the resource is finalized synchronously.",
"DeleteTelemetryV2MetadataBySchemaPrefixByMetadataEntityByPropertyName": "Deletes a property in the metadata automatically applied to a type of analytics platform event",
"DeleteVoiceChatV2Sessions": "Leave all joined sessions",
"DeleteVoiceChatV2SessionsById": "Leave a session",
"DeleteVoiceChatV3SessionsByProductName": "Leave all joined sessions",
"DeleteVoiceChatV3SessionsByProductNameById": "Leave a session",
"Exit": "Closes the connection.",
"GetAccountsSecurityV1Access": "Returns the action need to be done and outbound URL for it",
"GetAgeRestrictionV1AgeRestrictionProductsByProductId": "Returns the age-restriction state for the productId",
"GetAgentV1Requests": "Get the list of pending and active requests being handled by the agent",
"GetAgentV1RequestsThirdPartyDependencyByRequestId": "Get the current status for a third party dependency job",
"GetAgentV1Session": "Get the running state of the agent",
"GetAntiAddictionV1ProductsByProductIdPoliciesByPolicyTypeAntiAddictionState": "Returns an anti-addiction state by productId and policy",
"GetAppCommandV1AuthStatus": "Returns the authentication status",
"GetAppCommandV1FocusRequest": "Get the current app focus request, if one exists",
"GetChatV1Debug": "get debug config",
"GetChatV1Session": "get chat session state",
"GetChatV1SessionState": "get chat product session state",
"GetChatV1Settings": "Get the chat settings",
"GetChatV2Friendrequests": "Get all friend requests",
"GetChatV2FriendrequestsByPid": "Get friend request",
"GetChatV2SessionState": "get chat product session state",
"GetChatV3Blocked": "Get blocked players",
"GetChatV3Errors": "Get a specific error",
"GetChatV3Friendrequests": "Get friend requests",
"GetChatV3Friends": "Get friends",
"GetChatV3Groups": "Get groups",
"GetChatV4Blocked": "Get blocked players",
"GetChatV4Conversations": "Get all conversations",
"GetChatV4ConversationsActive": "Get active conversation",
"GetChatV4ConversationsByCid": "Get a conversation by cid",
"GetChatV4ConversationsByCidMessages": "Get conversation messages",
"GetChatV4ConversationsByCidMessagesById": "Get a specific conversation message",
"GetChatV4ConversationsByCidParticipants": "Get the participants in a conversation",
"GetChatV4ConversationsByCidParticipantsByPid": "Get specific participant in a conversation",
"GetChatV4Friendrequests": "Get friend requests",
"GetChatV4Friends": "Get friends",
"GetChatV4Presences": "Get multi-game presences",
"GetChatV5Conversations": "Get a conversation by cid",
"GetChatV5ConversationsActive": "Get active conversation",
"GetChatV5Friendrequests": "Get friend requests",
"GetChatV5Messages": "Get conversation messages",
"GetChatV5MessagesByDomain": "Get messages by domain (optional query args: cid &/or mid)",
"GetChatV5Participants": "Get specific participant in a conversation",
"GetChatV5ParticipantsByDomain": "Get conversations by domain (optional query arg: cid)",
"GetChatV6Conversations": "Get a conversation by cid",
"GetChatV6ConversationsActive": "Get active conversation",
"GetChatV6ConversationsByDomain": "Get conversations by domain (optional query arg: cid)",
"GetChatV6Friendrequests": "Get friend requests",
"GetChatV6Messages": "Get conversation messages",
"GetChatV6MessagesByDomain": "Get messages by domain (optional query args: cid &/or mid)",
"GetChatV7Conversations": "Get a conversation by cid",
"GetChatV7ConversationsActive": "Get active conversation",
"GetChatV7ConversationsByDomain": "Get conversations by domain (optional query arg: cid)",
"GetClientConfigV1Config": "Returns the configuration for the application. If config is not already cached locally, will make a blocking external request.",
"GetClientConfigV1ConfigByName": "Returns the single configuration value. If config is not already cached locally, will make a blocking external request.",
"GetClientConfigV1StatusByType": "Returns the status for the given config type which primarily indicates if the config type is ready for use.",
"GetClientConfigV2ConfigByName": "Non-blocking request for a specific configuration field.",
"GetClientConfigV2NamespaceByNamespace": "Non-blocking request for public+player configurations in a namespace.",
"GetClientConfigV2NamespaceByNamespacePlayer": "Non-blocking request for 'player' configurations in a namespace.",
"GetClientConfigV2NamespaceByNamespacePublic": "Non-blocking request for 'public' configurations in a namespace.",
"GetClientFeatureFlagsV1DebugAllSubscribedFlags": "Returns all the feature flags that are currently subscribed.",
"GetClientFeatureFlagsV1DebugMockData": "Retrieves the current set of mock data for the plugin.",
"GetClientFeatureFlagsV1DebugMockMode": "Returns whether the plugin is in mock mode or not.",
"GetClientFeatureFlagsV1DebugOverridesFlags": "Retrieves the values of all overridden flags.",
"GetClientFeatureFlagsV1FlagsByNamespaceByFlag": "Retrieves the value of a specific feature flag.",
"GetConfigV1ConfigNameByConfigName": "Get the config matching the ID exactly",
"GetConfigV1DebugAll": "Returns every config value attached to each of its sources.",
"GetCookieJarV1Cookies": "Get all cookies.",
"GetDataStoreV1InstallDir": "Gets the current install directory (used internally.)",
"GetDataStoreV1InstallSettingsByPath": "Get the data for the specified key from the install settings.",
"GetDataStoreV1Paths": "Get the data store paths.",
"GetDataStoreV1PrivateSettingsByPath": "Get the data for the specified key from the private settings.",
"GetDataStoreV1ProductSettingsProductsByProductIdPatchlinesByPatchlineId": "Get all settings for the specified product.",
"GetDataStoreV1ProductSettingsProductsByProductIdPatchlinesByPatchlineIdByPath": "Get the data for the specified key from the settings for the specified product.",
"GetDataStoreV1SystemSettingsByPath": "Get the setting for the specified key.",
"GetEntitlementsV1Token": "Get V1 entitlements token, which contains the RSO access token.",
"GetEntitlementsV2Token": "Get V2 Entitlements token, which contains the default RSO authorization.",
"GetEulaV1Agreement": "Returns an object containing metadata about the most recent published EULA, and a field, 'acceptance', indicating whether the user has accepted this agreement or not. (The 'acceptance' field is accessible separately via the /acceptance endpoint.\n\nWhen the 'acceptance' field is 'WaitingForAllServiceData', we don't have the data for the latest EULA, nor its acceptance state, and all other fields are invalid.",
"GetEulaV1AgreementAcceptance": "Returns the acceptance state of the most recent EULA for the current user. Possible values are:\n\n- WaitingForAllServiceData: The user is signed out, we have yet to retrieve client-config, or we are otherwise waiting for data to determine if the user has accepted the latest agreement.\n- AcceptanceRequired: The user has never accepted a EULA, or has not accepted the most recent version.\n- Accepted: The user has accepted the most recent EULA.",
"GetEulaV1AgreementContent": "Returns the content of the current version EULA.",
"GetEulaV1ExternalLegalLinks": "Returns the web URLs for Terms of Service and Privacy Noticeaccording to the most appropriate locale for the agreement you are bound to",
"GetEulaV1PrivacyPolicy": "Returns the current privacy policy data.",
"GetEulaV1PrivacyPolicyContent": "Returns the content of the current privacy policy.",
"GetGameSessionV1Clusters": "Gets a list of all available clusters. Cluster IDs arrive asynchronously and may not be immediately avaiable. The logic of selecting the optimal cluster for a player is up to the game team.",
"GetGameSessionV1SessionsBySessionId": "Gets the status of the specified session.",
"GetKrAccountConfigV1Config": "The current plugin configuration.",
"GetKrAccountPromotionV1Session": "Get KR account session token for KR Account Promotion flow",
"GetLoyaltyV1LoyaltyEventUrls": "Returns the current LoyaltyPlugin login and loyalty session event url",
"GetLoyaltyV1LoyaltyResource": "Returns loyalty resource including pcbId if player's playing from pcbang or not found exception",
"GetLoyaltyV1LoyaltyUsersState": "Returns the current LoyaltyPlugin user state about logged in or out",
"GetMobileProductRegistryV1BuildNumber": "[Deprecated] Get the current game build number.",
"GetMobileProductRegistryV1IsGameObsolete": "[Deprecated] Get if the current game build is obsolete.",
"GetMobileProductRegistryV1ValidGameVersions": "Get the valid game versions",
"GetNameCheckV1Validate": "Verify user input name.",
"GetNativeUxV1ShouldKeepGameUpToDate": "Setting that, if true, means that Foundation should exit if no games are running.",
"GetPatchV1Configuration": "Retrieve the configuration",
"GetPatchV1Installs": "Get list of installs on disk",
"GetPatchV1InstallsByInstallId": "Get detailed information about an install, including current requests and status.",
"GetPatchV1InstallsByInstallIdStatus": "Retrieve the current patch, preview and seed statuses of an install resource",
"GetPatchV1InstallsByInstallIdStatusPatch": "Retrieve the current patch status of an install.",
"GetPatchV1InstallsByInstallIdStatusPreview": "Retrieve the current preview status of an install.",
"GetPatchV1InstallsByInstallIdStatusRepair": "Retrieve the current repair status of an install.",
"GetPatchV1InstallsByInstallIdStatusSeed": "Retrieve the current seed status of an install.",
"GetPatchV2Configuration": "Retrieve the configuration",
"GetPatchV2Products": "Get list of products on disk",
"GetPatchV2ProductsByProductId": "Get detailed information about a product, including state for every install associated to that product.",
"GetPatchV2ProductsByProductIdInstallsByInstallId": "Returns the state of the entire install along with the state of its components.",
"GetPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentId": "Returns the state of a component.",
"GetPatchV2RequestsByRequestId": "Returns the state of a component for a specific request.",
"GetPayMobileV1ProductListResult": "Available products notification",
"GetPayMobileV1PurchaseResult": "Purchase notification",
"GetPlayerAccountAliasesV1Active": "Returns the current active game name for the player.",
"GetPlayerAccountAliasesV1Aliases": "Gets a list of all aliaes for the player.",
"GetPlayerAccountAliasesV1Required": "Check if a player is required to set their name.",
"GetPlayerAccountConfigV1Config": "The current plugin configuration.",
"GetPlayerAccountPromotionV1Eligibility": "Return the latest cached eligibility check.",
"GetPlayerAccountPromotionV1Fields": "Get a list of fields the player can update.",
"GetPlayerAccountRegionsV1Eligibility": "Check if a player is eligible for regions selection.",
"GetPlayerAccountVngV1StatusByProductId": "Check cache to see if a player must register with the Vietnamese government; otherwise, check with VNG (via the Player Account Service).",
"GetPlayerAccountVngV1StatusReady": "Whether VNG status endpoints are ready to handle requests (RSO access token exists)",
"GetPlayerAffinityConfigV1Config": "The current plugin configuration.",
"GetPlayerAffinityConfigV1Status": "The current plugin readiness.",
"GetPlayerAffinityProductV1TokenByProduct": "Get the cached product affinity token.",
"GetPlayerAffinityProductV2CachedAffinityByProduct": "Get the cached product affinity.",
"GetPlayerAffinityProductV2TokenByProduct": "Get the player product affinity token.",
"GetPlayerAffinityServiceV2CachedAffinityByService": "Get the cached service affinity.",
"GetPlayerPreferencesV1DataByType": "Get decompressed and decoded player preferences information from a specified type from the Player Preferences service as string",
"GetPlayerPreferencesV1DataJsonByType": "Get decompressed and decoded JSON player preferences information from a specified type from the Player Preferences service",
"GetPlayerPreferencesV1Ready": "True if the plugin is ready to be used",
"GetPlayerReportingV1ReporterFeedback": "Provides a list of unacknowledged localized reporter feedback messages to show the player.",
"GetPlayerReportingV1Status": "For Integration test & debugging use only.",
"GetPluginManagerV1Status": "Get the status of the plugin manager.",
"GetPluginManagerV2Descriptions": "Get all plugin descriptions.",
"GetPluginManagerV2DescriptionsByPlugin": "Get a plugin description.",
"GetPluginManagerV2Plugins": "Get diagnostic information for all plugins.",
"GetPluginManagerV2PluginsByPlugin": "Get diagnostic information for a single plugin.",
"GetProcessControlV1Process": "Returns information about the process-control.",
"GetProductIntegrationDepsV1AppRepairApplyRequestsProductsByProductIdPatchlinesByPatchlineId": "Returns the game repair request for the matching product/patchline",
"GetProductIntegrationDepsV1AppUpdateApplyRequestsProductsByProductIdPatchlinesByPatchlineId": "Returns the game update request for the matching product/patchline",
"GetProductIntegrationDepsV1AppUpdateStatusesProductsByProductIdPatchlinesByPatchlineId": "Get the current app update status for a given product and patchline",
"GetProductIntegrationV1AppUpdateStatus": "Indicates the state of the primary patchline (or App Store app) for the running game.",
"GetProductIntegrationV1DebugAppUpdateStatuses": "Debug endpoint to get a list of all the app update statuses",
"GetProductIntegrationV1DebugAppUpdateStatusesBySessionId": "Debug endpoint to get an update status by session id",
"GetProductLocalizationV1Data": "Returns loc plugin data - for triaging issues with bad or missing loc data",
"GetProductLocalizationV1ProductsByProductIdPatchlinesByPatchlineIdTranslationsByLocale": "Returns translations for a specified patchline and locale or fetches them if they are not yet fetched",
"GetProductLocalizationV1ProductsByProductIdTranslationsByLocale": "Returns translations for a specified product and locale or fetches them if they are not yet fetched",
"GetProductMetadataV1Cookies": "Retrieves all cookies necessary to access any URI associated with any patchline.",
"GetProductMetadataV1DebugMockDataBySource": "Retrieves the current set of mock data for the plugin.",
"GetProductMetadataV1DebugMockMode": "Returns whether the plugin is in mock mode or not.",
"GetProductMetadataV1DefinitionsProducts": "Retrieve brief definitions of all entitled products.",
"GetProductMetadataV1DefinitionsProductsByProductId": "Retrieve a brief definition of a specific product.",
"GetProductMetadataV1ProductsByProductIdPatchlinesByPatchlineIdSecondaryPatchlines": "Retrieves a list of secondary patchlines.",
"GetProductMetadataV1ProductsByProductIdPatchlinesByPatchlineIdSecondaryPatchlinesBySecondaryPatchlineId": "Retrieves a secondary patchline within a patchline.",
"GetProductMetadataV1PublishStatesByConfigType": "Retrieves the publish state of products of config type (public or player).",
"GetProductMetadataV2Products": "Retrieves a full list of all entitled products and patchlines.",
"GetProductMetadataV2ProductsByProductId": "Retrieves a single product and all its entitled patchlines.",
"GetProductMetadataV2ProductsByProductIdPatchlinesByPatchlineId": "Retrieves a single patchline.",
"GetProductMetadataV2ProductsByProductIdPlayerAffinityToken": "Retrieves player affinity token for a single product.",
"GetProductMetadataV2RegionLocale": "Get the current region and locale.",
"GetProductSessionV1ExternalSessions": "Get all sessions across products external to Riot Client. e.g. just games and not the UX product.",
"GetProductSessionV1ExternalSessionsBySessionId": "Get the session for a specific session ID for a product external to Riot Client. e.g. just games and not the UX product.",
"GetProductSessionV1HeartbeatBySessionId": "Deprecated. Please use POST /product-session/v2/heartbeat.",
"GetProductSessionV1HostSession": "Fetches the session of the 'host app', if it exists for this platform.",
"GetProductSessionV1HostSessionId": "Fetches the session ID of the 'host app', if it exists for this platform.",
"GetProductSessionV1LogsPath": "Returns the standard logs folder for your application",
"GetProductSessionV1LogsPathByPatchlineName": "Returns the standard logs folder for a given patchline name.",
"GetProductSessionV1SessionHeartbeatsBySessionId": "Get the heartbeat for a specific session ID.",
"GetProductSessionV1Sessions": "Get all sessions across products.",
"GetProductSessionV1SessionsBySessionId": "Get the session for a specific session ID.",
"GetRestrictionV1LaunchRestrictedProducts": "Returns all product ids the player is launch restricted for",
"GetRestrictionV1LaunchRestrictions": "Returns all launch restrictions for the logged in player",
"GetRestrictionV1Ready": "Returns true when the plugin is ready. Consumers are expected to wait until the plugin is ready to request restrictions",
"GetRewardsV1ProductByProductIdGrants": "Get the available grants for the current player with some optional filters",
"GetRewardsV1ProductByProductIdGroups": "Get all the reward groups defined for a product",
"GetRewardsV1Ready": "",
"GetRiotClientAppCommandV1UriHandler": "Returns 204 if a URI handler is registered for this client, and 404 otherwise",
"GetRiotClientAuthV1Authorization": "The player's RSO tokens",
"GetRiotClientAuthV1HomeBaseCountry": "The player's home base country",
"GetRiotClientAuthV1LoginCountry": "The player's login country",
"GetRiotClientAuthV1RsoClient": "Fetch the SDK's RSO client details.",
"GetRiotClientAuthV1Userinfo": "Public claims about the player",
"GetRiotClientLifecycleStateV1StateByState": "Retrieve the contents a named state, along with last-acked serial numbers.",
"GetRiotClientLifecycleStateV1StateByStateByParamSubscriberBySubscriber": "Retrieve the contents a named state, along with the last-acked serial number for a particular subscriber.",
"GetRiotClientLifecycleStateV1StateByStateSubscriberBySubscriber": "Retrieve the contents a named state, along with the last-acked serial number for a particular subscriber.",
"GetRiotClientLifecycleV1Enabled": "Returns whether the new lifecycle plugin is enabled",
"GetRiotClientLifecycleV1LeagueRegionElection": "Returns a structure containing the current state of League account election for the logged in account.",
"GetRiotClientLifecycleV1ProductContext": "Returns the product context.",
"GetRiotClientLifecycleV1ProductContextPhase": "Returns the product context phase.",
"GetRiotClientLifecycleV1UxCommand": "Returns the current UX command that the default client UX app needs to process",
"GetRiotLoginV1LoginResultDetail": "[Deprecated] Get if the current game build is obsolete.",
"GetRiotLoginV1Status": "Returns the current login state of the client",
"GetRiotMessagingServiceV1MessageByA": "Util endpoint that responds with any cached messages for the resource based on component a",
"GetRiotMessagingServiceV1MessageByAByB": "Util endpoint that responds with any cached messages for the aggregate resource based on components a:b",
"GetRiotMessagingServiceV1MessageByAByBByC": "Util endpoint that responds with any cached messages for the aggregate resource based on components a:b:c",
"GetRiotMessagingServiceV1MessageByAByBByCByD": "Util endpoint that responds with any cached messages for the aggregate resource based on components a:b:c:d",
"GetRiotMessagingServiceV1MessageByAByBByCByDByE": "Util endpoint that responds with any cached messages for the aggregate resource based on components a:b:c:d:e",
"GetRiotMessagingServiceV1MessageByAByBByCByDByEByF": "Util endpoint that responds with any cached messages for the aggregate resource based on components a:b:c:d:e:f",
"GetRiotMessagingServiceV1Session": "Return the current session, if any.",
"GetRiotMessagingServiceV1State": "Return all state",
"GetRiotStatusV1ProductsByProductIdPatchlinesByPatchlineIdDeploymentsByDeployment": "Returns raw JSON service status information for a specific game service cluster",
"GetRiotStatusV1Riotclient": "Returns raw JSON service status information for issues affecting multiple games",
"GetRiotclientAffinity": "Get the current runtime affinity of the application.",
"GetRiotclientAppName": "Application name without file extension",
"GetRiotclientAppPort": "Get the TCP port number that the remoting server is listening on.",
"GetRiotclientAuthToken": "Return the auth token used by the remoting server",
"GetRiotclientAuthenticatedConnectionsByConnectionId": "Fetches a table of connections that have authenticated with this application.",
"GetRiotclientCommandLineArgs": "Get the command line parameters for the application",
"GetRiotclientGetRegionLocale": "Get the current region and locale.",
"GetRiotclientMachineId": "Base64 encoded uuid identifying the user's machine",
"GetRiotclientProductLocalesProductsByProductIdPatchlinesByPatchlineId": "Gets the locale of the product with the specified product and patchline id",
"GetRiotclientRegionLocale": "Get the current region and locale.",
"GetRiotclientSecondaryArgs": "Get the command line parameters that occur after the '--' delimiter",
"GetRiotclientSessionId": "UUID identifying a user interaction session. This value is created when the users starts Riot Client, and persists (including through restarts) until the user intentionally closes the client.",
"GetRiotclientSystemInfoV1BasicInfo": "Get basic system information: OS, memory, processor speed, and number of physical cores",
"GetRiotclientTrace": "Retrieves a completed scheduler trace.",
"GetRiotclientV1AppInfo": "Information about the application hosting the SDK",
"GetRiotclientZoomScale": "Gets the last known posted zoom-scale value.",
"GetRnetLifecycleV1LeagueRegionElection": "Returns a structure containing the current state of League account election for the logged in account.",
"GetRnetLifecycleV1ProductContext": "Returns the product context",
"GetRnetLifecycleV1ProductContextPhase": "Returns the phase of the product context",
"GetRnetLifecycleV2UxCommand": "Returns the current UX command that the default client UX app needs to process",
"GetRnetPftV1Surveys": "Gets the collection of surveys.",
"GetRnetPftV1SurveysById": "Gets a specific survey by id.",
"GetRnetProductRegistryV1BackgroundPatchingState": "Return the current background patching state",
"GetRnetProductRegistryV1InstallStates": "Retrieves a map of product and patchline install states",
"GetRnetProductRegistryV1InstallStatesProductsByProductIdPatchlinesByPatchlineId": "Retrieves the install state of the specified product and patchline",
"GetRnetProductRegistryV1MoveInstallStatesProductsByProductIdPatchlinesByPatchlineId": "Get the status of a move request for a product, if it exists.",
"GetRnetProductRegistryV4AvailableProductLocalesProductsByProductIdPatchlinesByPatchlineId": "Retrieves the list of available locales for the given product and patchline. If the patchline is unavailable (i.e. it is a private product, and you are not logged in), the list of available locales will be returned from the .product_settings.yaml file, if it exists.",
"GetRnetProductRegistryV4InstallSettingsProductsByProductIdPatchlinesByPatchlineId": "Retrieves the settings for the particular product and patchline, stored in the .product_settings.yaml file.",
"GetRnetProductRegistryV4InstallSettingsProductsByProductIdPatchlinesByPatchlineIdByPath": "Retrieves the settings for the particular product and patchline, stored in the .product_settings.yaml file.",
"GetRnetProductRegistryV4PatchStatesProductsByProductIdPatchlinesByPatchlineId": "Get patch status for patchline",
"GetRnetProductRegistryV4PlayerProductsState": "Returns the current state of player products",
"GetRnetProductRegistryV4PriorityPatchRequestsProductsByProductIdPatchlinesByPatchlineId": "Checks to see if a priority patch is in progress for the given product and patchline. Returns a boolean value.",
"GetRnetProductRegistryV4Products": "Returns the list of installable games and configurations in hierarchical format",
"GetRnetProductRegistryV4ProductsByProductIdPatchlinesByPatchlineId": "Returns a patchline by id",
"GetRnetProductRegistryV4PublicProductsState": "Returns the current state of public products",
"GetRnetSanitizerV1Status": "Gets the current status of the sanitizer plugin",
"GetRnetSelfUpdateV1Enabled": "Get if self-update is enabled.",
"GetRnetSelfUpdateV1Status": "Get the status of the self-update plugin.",
"GetRsoAuthConfigurationV3AmrValuesSupported": "Returns a list of supported authentication strategies.",
"GetRsoAuthConfigurationV3ClientId": "Returns the default client ID for this application. Only available once /v3/ready-state is marked as ready.",
"GetRsoAuthConfigurationV3OpenidConfiguration": "Returns the raw RSO openid configuration. This resource will be notified when the configuration is retrieved initially and when it's updated.",
"GetRsoAuthConfigurationV3PartnerAuthConfig": "Returns a partner auth config",
"GetRsoAuthConfigurationV3ReadyState": "Returns the ready state of the rso-auth plugin",
"GetRsoAuthV1AuthHintsHint": "Returns the current auth hint",
"GetRsoAuthV1Authorization": "Retrieve a player's authorization status.",
"GetRsoAuthV1AuthorizationAccessToken": "Retrieve a player's access token.",
"GetRsoAuthV1AuthorizationEntitlementsToken": "Retrieve a player's entitlements token.",
"GetRsoAuthV1AuthorizationError": "Retrieves any error received from RSO during the last authorization attempt.",
"GetRsoAuthV1AuthorizationGasToken": "Deprecated API for Retrieving a gas token.",
"GetRsoAuthV1AuthorizationIdToken": "Retrieve a player's ID token.",
"GetRsoAuthV1AuthorizationUserinfo": "Retrieve a player's userinfo.",
"GetRsoAuthV1ConfigByPlatformId": "Get the current RSO config for a region.",
"GetRsoAuthV1Session": "Retrieve the current session state.",
"GetRsoAuthV1SessionPersistence": "Retrieves the persistence value of this session as a `BindingProperty` which can be serialized to local storage.",
"GetRsoAuthV1StatusByPlatformId": "Gets the status of RSO authentication for a region.",
"GetRsoAuthV1StatusMessage": "Get the current RSO status message",
"GetRsoAuthV1UserinfoByClientId": "Retrieve a player's userinfo using the implicit grant mode managed client-id and access-token.",
"GetRsoAuthV2AuthorizationsByClientId": "Retrieve the authorization for the client-id.",
"GetRsoAuthenticatorV1Authentication": "Get the current state of authentication.",
"GetRsoAuthenticatorV1Config": "Get the current client config",
"GetRsoMobileUiV1AccountPromotionStatus": "Get the current account promotion UI status",
"GetRsoMobileUiV1DebugConfigurations": "Introspect the current configuration",
"GetRsoMobileUiV1EulaStatus": "",
"GetRsoMobileUiV1LoginStatus": "Get the current login UI status",
"GetRsoMobileUiV1LoginStrategies": "",
"GetRsoMobileUiV1RegionElection": "Fetches the state of the Region Election UI",
"GetRsoMobileUiV1RegionElectionEligibility": "Check if a player is eligible for region election with UI",
"GetRsoMobileUiV1VngStatus": "",
"GetRsoMobileUiV2Eula": "",
"GetRsoMobileUiV2EulaStatus": "",
"GetScdV1Cookies": "Returns the list of cookies",
"GetScdV1Enabled": "Returns whether SCD communication is enabled.",
"GetScdV1EnabledInConfig": "Returns whether SCD communication is enabled in confguration.",
"GetServiceStatusV1StatusProductContext": "Get the service status for current product-context, using Product-Specific region and locale.",
"GetServiceStatusV1StatusProductsByProductIdPatchlinesByPatchlineId": "Get the service status for specified product, using MultiGame (RiotClient) region and locale.",
"GetSystemV1Builds": "Information about the current artifacts that make up this build",
"GetTelemetryV1ApplicationStartTime": "Gets the millisecond UNIX timestamp of when the application was started.",
"GetTelemetryV1Availability": "Returns the availability for each telemetry ingest endpoint. This is not updated dynamically.",
"GetVanguardV1Status": "Returns the state of the Vanguard installation.",
"GetVoiceChatV1ActiveProduct": "Get the current active product",
"GetVoiceChatV1AudioProperties": "Get current audio properties",
"GetVoiceChatV1PushToTalk": "Get voice chat push to talk configuration status",
"GetVoiceChatV2DevicesCapture": "Get the list of available sound capture devices",
"GetVoiceChatV2DevicesCapturePermission": "Returns true if the user has permission to use the microphone.",
"GetVoiceChatV2DevicesRender": "Get the list of available sound render devices",
"GetVoiceChatV2PushToTalkByProductName": "Get voice chat push to talk configuration status",
"GetVoiceChatV2Sessions": "Get the list of all current voice sessions",
"GetVoiceChatV2SessionsById": "Get session details",
"GetVoiceChatV2SessionsBySessionIdParticipantsByParticipantId": "Get participant details",
"GetVoiceChatV2Settings": "Get current voice chat settings",
"GetVoiceChatV2State": "Get the connection state",
"GetVoiceChatV3SessionsByProductName": "Get the list of all current voice sessions",
"GetVoiceChatV3SessionsByProductNameById": "Get session details",
"GetVoiceChatV3SessionsByProductNameBySessionIdParticipantsByParticipantId": "Get participant details",
"GetVoiceChatV3SettingsByProductName": "Get current voice chat settings",
"Help": "Returns information on available functions and types",
"PatchChatV1Settings": "Update chat settings, partial update using only given fields",
"PatchRewardsV1ProductByProductIdGrantsByGrantIdView": "",
"PatchRnetPftV1SurveysBySurveyIdQuestionsByQuestionId": "Updates the specified question response.",
"PatchRsoAuthV2AuthorizationsByClientId": "Updates an existing authorization for a client and requests a new authorization.",
"PostAgentV1ConnectionInfo": "Method for the agent to inform Foundation about how to connect",
"PostAgentV1RequestsCreateUriHandler": "Create URI handler under Registry to launch from riotclient:// uri",
"PostAgentV1RequestsPrepareDirectoryPermissions": "Prepare permissions on a collection of directories for use by all users",
"PostAgentV1RequestsPreparePermissions": "Prepare permissions on a collection of paths for use by all users",
"PostAgentV1RequestsRegisterWatchPath": "[Mac] Register a watch path, which the agent will check for existence",
"PostAgentV1RequestsThirdPartyDependency": "Queue a third party dependency for install",
"PostAgentV1Session": "Start the agent",
"PostAntiAddictionV1ProductsByProductIdAntiAddictionState": "Test API for triggering anti-addiction state for testing purposes",
"PostChatV1Debug": "set debug config",
"PostChatV1DebugFinalizeInitialize": "debug finalize and initialize",
"PostChatV1SessionConnect": "force to chat to connect & allow reconnects",
"PostChatV1SessionDebugTerminateByProduct": "Simulate termination of a product to the chat plugin",
"PostChatV1SessionDisconnect": "force chat to disconnect & disallow reconnects",
"PostChatV1SessionPlatform": "Update the chat session's League of Legends platform id",
"PostChatV2Friendrequests": "Add friend request / invite friend",
"PostChatV2MeDebugJwt": "Simulate updating a game presence with jwt (server authoritative info)",
"PostChatV2SessionConnect": "force to chat to connect & allow reconnects",
"PostChatV2SessionDebugTerminateByProduct": "Simulate termination of a product to the chat plugin",
"PostChatV2SessionDisconnect": "force chat to disconnect & disallow reconnects",
"PostChatV2SessionPlatform": "Update the chat session's League of Legends platform id",
"PostChatV3Blocked": "Block a player",
"PostChatV3Friendrequests": "Add friend request / invite friend",
"PostChatV3Groups": "Create a friend group",
"PostChatV3MeDebugJwt": "Simulate updating a game presence with jwt (server authoritative info)",
"PostChatV4Blocked": "Block a player",
"PostChatV4ConversationsByCid": "Create or join a conversation by cid",
"PostChatV4ConversationsByCidMessages": "Send a new chat message to a room or individual",
"PostChatV4ConversationsByCidRead": "Mark conversation as read",
"PostChatV4ConversationsMucJoinByName": "Creates and joins a group conversation with the given name (debug builds only).",
"PostChatV4Friendrequests": "Add friend request / invite friend",
"PostChatV4Groups": "Create a friend group",
"PostChatV5Conversations": "Create or join a conversation",
"PostChatV5ConversationsRead": "Mark conversation as read",
"PostChatV5Friendrequests": "Add friend request / invite friend",
"PostChatV5Messages": "Send a new chat message to a room or individual",
"PostChatV6Conversations": "Create or join a conversation",
"PostChatV6ConversationsRead": "Mark conversation as read",
"PostChatV6Friendrequests": "Add friend request / invite friend",
"PostChatV6Messages": "Send a new chat message to a room or individual",
"PostChatV7Conversations": "Create or join a conversation",
"PostChatV7ConversationsRead": "Mark conversation as read",
"PostCookieJarV1Cookies": "Set new cookies.",
"PostDataStoreV1InstallSettingsByPath": "Set the data for the specified key from the install settings.",
"PostDataStoreV1PrivateSettingsByPath": "Set the data for the specified key from the private settings.",
"PostDataStoreV1ProductSettingsProductsByProductIdPatchlinesByPatchlineId": "Set all settings for the specified product.",
"PostDataStoreV1ProductSettingsProductsByProductIdPatchlinesByPatchlineIdByPath": "Set the data for the specified key from the settings for the specified product.",
"PostDataStoreV1ReloadProductSettingsProductsByProductIdPatchlinesByPatchlineId": "Reload all settings for the specified product.",
"PostDisambiguationV1MagicLink": "Retrieves the magic disambiguation link for the current auth'd account.",
"PostEulaV1DebugAgreementForceRequirement": "Forces client into requiring acceptance",
"PostGameSessionV1Sessions": "Creates a GAPS Session Funnel request that interacts with 1-3 services based on the supplied options. Requests are handle asynchronously and reported by through changes to the `state` property of this resource. Use the generated `id` field as a path parameter to subscribe to this specific funnel instance.\n\nPlayers exiting the funnel will exit with one of several known states indicated by the `message` field of theis resource. Session heartbeats and queue polling are handled transparently, as are server-side kicks.",
"PostInfoRadiatorV1TimeSampleByPhaseNameEnd": "Mark the end of the time phase sample and send an event to Analytics Platform conforming to the `riotclient__TimeSample__v4` schema.",
"PostInfoRadiatorV1TimeSampleByPhaseNameStart": "Track the start time for a time phase sample of interest. Call `/info-radiator/v1/time-sample/{phase}/end` to mark the end of the sample.",
"PostJwtAuthenticatorV1Verify": "Verify a JWT",
"PostLoyaltyV1DebugSetLoyaltyResourceByPcbId": "Sets a loyalty resource for testing purposes - DEBUG ONLY",
"PostMobileProductRegistryV1BuildNumberByBuild": "[Deprecated] Set the current game build number.",
"PostMobilePushV1Register": "Indicate that a product wants to register with push functionality",
"PostMobilePushV1SubscribeTopic": "Subscribe to a specific topic",
"PostNativeUxV1ShowAlert": "Display a native message to the player.",
"PostPatchV2DebugSetUp": "Takes care of setup and returns a patch url and bundles url that can be used to issue patch, seed, partial-repair, full-repair and preview requests.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStartFullRepairRequest": "Schedules a full repair operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStartPartialRepairRequest": "Schedules a partial repair operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStartPatchingRequest": "Schedules a patching operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStartPreviewRequest": "Schedules a preview operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStartSeedingRequest": "Schedules a seed operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStartVerifyRequest": "Schedules a verify operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStopFullRepairRequest": "Stop a full repair operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStopPartialRepairRequest": "Stop a partial operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStopPatchingRequest": "Stop a patching operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStopPreviewRequest": "Stop a preview operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStopSeedingRequest": "Stop a seed operation.",
"PostPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentIdStopVerifyRequest": "Stop a verify operation.",
"PostPayMobileV1PurchaseByProductId": "Purchase the given product",
"PostPayMobileV1RequestExternalProducts": "Retrieve available products for purchase from set of product ids",
"PostPayMobileV1RequestPricePointProducts": "Retrieve available price point products for purchase",
"PostPayMobileV1RequestProducts": "Retrieve available products for purchase",
"PostPayMobileV1SessionResume": "Resume the purchase session",
"PostPaymentsV1InitializePurchase": "Begin the purchase flow, receiving the URL to a web client.",
"PostPlayerAccountAliasesV1Aliases": "Sets a new set of aliaes for the player.",
"PostPlayerAccountAliasesV1Eligibility": "Check if a player is eligible for a name change.",
"PostPlayerAccountAliasesV1GenerateTagline": "Returns a random tagline that is valid for the player.",
"PostPlayerAccountAliasesV1Validity": "Checks a name for validity without saving it.",
"PostPlayerAccountPromotionV1Eligibility": "Check if a player is eligible for promotion.",
"PostPlayerAccountPromotionV1Promotion": "Promote an account by providing missing details.",
"PostPlayerAccountRegionsV1RegionByRegionCode": "assign the given region to player account",
"PostPlayerAccountVngV1StatusByProductId": "Check with VNG (via the Player Account Service) to see if a player must register with the Vietnamese government.",
"PostPlayerAccountVngV1WebUrlByProductId": "Create the external web url with the given redirect-uri",
"PostPlayerAffinityAffinityV1Token": "Get a player affinity token.",
"PostPlayerAffinityProductV1Token": "Get a player product affinity token, save it to the local cache, and notify subscribers. Retrieve from local cache on error.",
"PostPlayerAffinityProductV1TokenDebug": "DEBUG: For debugging subscribers. Save a new product affinity token to the local cache then notify subscribers.",
"PostPlayerAffinityProductV2Token": "Get a player product affinity token, save the affinity to the local cache, and notify subscribers.",
"PostPlayerAffinityProductV2TokenDebug": "DEBUG: For debugging subscribers. Save a new product affinity token to the local cache and notify subscribers.",
"PostPlayerAffinityServiceV1Token": "Get a player service affinity token.",
"PostPlayerAffinityServiceV2Token": "Get a player service affinity token and save the affinity to the local cache.",
"PostPlayerReportingV1Report": "",
"PostPlayerReportingV1ReporterFeedbackAck": "Acknowledges all reporter feedbacks.",
"PostPlayerReportingV1ReporterFeedbackAckById": "Acknowledges a specific reporter feedback. Returns true if we can find a reporter feedback that matches that ID. Returns false if we can't.",
"PostProcessControlV1ProcessQuit": "Quits the application.",
"PostProcessControlV1ProcessRestart": "Restarts the application. Does nothing if there is already a waiting delayed restart. Optionally accepts specific version to restart.",
"PostProductLauncherV1DefaultProduct": "Launches the default product. Returns the session ID.",
"PostProductLauncherV1DefaultProductFocus": "Brings the window of the default product into focus",
"PostProductLauncherV1PartnerProduct": "Launches the partner product. Returns the session ID.",
"PostProductLauncherV1ProductsByProductIdPatchlinesByPatchlineId": "Launch a non-internal product-patchline (e.g. a game). Returns the session ID.",
"PostProductLocalizationV1Translate": "DEPRECATED - Returns a translation string(s) for given keys, if found, in Riot Client's locale",
"PostProductLocalizationV2Translate": "Returns a translation string(s) for given keys, if found",
"PostProductSessionV1HostSession": "Handles creation of a new session for the 'host app'",
"PostProductSessionV1SessionsBySessionId": "Handles creation of a new session.",
"PostProductSessionV2Heartbeat": "Periodic heartbeat made by products to update Riot Client with state of gameplay, and to verify connectivity to Riot Client. \n\nSessionId is derived from 'session' HTTP header, or websocket authentication.",
"PostProductSessionV2HeartbeatBySessionId": "Periodic heartbeat made by products to update Riot Client with state of gameplay, and to verify connectivity to Riot Client. ",
"PostRewardsV1ProductByProductIdGrantsByGrantIdSelect": "Select a reward for the current player, given product, and reward grant",
"PostRiotClientAppCommandV1DebugUseLocalUriHandler": "Sets uri handler to use riotclient-local for testing",
"PostRiotClientAppCommandV1UriHandler": "Attempts to configure a URI handler for this client, elevating if necessary",
"PostRiotClientLifecycleV1Hide": "Hide the UX.",
"PostRiotClientLifecycleV1LeagueRegionElection": "Sets League account election information for the current account -- specifically, 'selectedRegions'.",
"PostRiotClientLifecycleV1Quit": "Quit Riot Client. If any games are running show the games-running exit-dialog.",
"PostRiotClientLifecycleV1Restart": "Restarts Riot Client. If any games are running show the games-running exit-dialog.",
"PostRiotClientLifecycleV1Show": "Show the UX.",
"PostRiotMessagingServiceV1Acknowledge": "acknowledge RMS message received",
"PostRiotMessagingServiceV1Connect": "Schedule a connect request to RMS.",
"PostRiotMessagingServiceV1Entitlements": "Update session entitlements token",
"PostRiotMessagingServiceV1Reconnect": "Schedule a reconnect request to RMS. For debug purposes only.",
"PostRiotMessagingServiceV1SimulateMessage": "Simulate an RMS message. For debug purposes only.",
"PostRiotMessagingServiceV1SwitchServers": "Schedule a switching server request to RMS. For debug purposes only.",
"PostRiotMessagingServiceV1TokenRefresh": "Schedule a token refresh request to RMS. For debug purposes only.",
"PostRiotStatusV1DebugSetRiotclientPatchlineByPatchlineId": "Returns raw JSON service status information for issues affecting multiple games",
"PostRiotclientAffinity": "Sets the current runtime affinity of the application.",
"PostRiotclientNewArgs": "Endpoint for passing in new data.",
"PostRiotclientSetRegionLocale": "Update the region and locale.",
"PostRiotclientShowLogs": "Open explorer to log files.",
"PostRiotclientShowSwagger": "Open swagger in the default browser.",
"PostRiotclientZoomScale": "Handles changing the zoom scale value.",
"PostRnetLifecycleV1DefaultProductLaunch": "Launch the currently configured default product.",
"PostRnetLifecycleV1LeagueRegionElection": "Sets League account election information for the current account -- specifically, 'selectedRegions'.",
"PostRnetPftV1RequestSurvey": "Post a game event and see if you get a survey.",
"PostRnetPftV1SurveysByIdClose": "Notifies the backend that the player closed the survey before completing it.",
"PostRnetPftV1SurveysByIdPopout": "Notifies the backend that the player opened an external survey.",
"PostRnetPftV1SurveysByIdSubmit": "Submits the given survey to the PFT service.",
"PostRnetProductRegistryV1AvailableDiskSpace": "Retrieves the available disk space at a specified path. Will return the available disk space in bytes. All paths should use '/' as the delimiter",
"PostRnetProductRegistryV1DirectorySize": "Retrieves the size of the entire directory of the specified path. Will return the directory size in bytes. All paths should use '/' as the delimiter",
"PostRnetProductRegistryV4PatchRequestsProductsByProductIdPatchlinesByPatchlineIdRetryDependencies": "Retry failed dependency installs, if any.",
"PostRnetSanitizerV1ContainsSanitized": "Determine if the request has a sanitized word",
"PostRnetSanitizerV1Sanitize": "Sanitize the input text(s)",
"PostRsoAuthV1AuthHintsHint": "Creates a test auth hint",
"PostRsoAuthV1AuthorizationGas": "Log the user in with username, password and platformId.",
"PostRsoAuthV1AuthorizationRefresh": "Force a refresh of the RSO tokens.",
"PostRsoAuthV1AuthorizationSimulateError": "Set simulated error response code for logging in",
"PostRsoAuthV1AuthorizationUserinfo": "Retrieve a player's userinfo from RSO.",
"PostRsoAuthV1Config": "Override the default RSO confings.",
"PostRsoAuthV1DeviceId": "Retrieves device ID configuration.",
"PostRsoAuthV1PartnerAuth": "DEPRECATED: Log the user in with any of the accepted partner credentials",
"PostRsoAuthV1StatusMessage": "Update the RSO auth status",
"PostRsoAuthV1UserinfoByClientId": "Refresh a player's userinfo using the implicit grant mode managed client-id and access-token.",
"PostRsoAuthV2Authorizations": "Create a new authorization request, or retrieves authorization for an existing request.",
"PostRsoAuthV2AuthorizationsByClientId": "Refresh an authorization for a given client",
"PostRsoAuthV2Config": "Override the default RSO configuration",
"PostRsoAuthV2PartnerAuth": "Log the user in with any of the accepted partner credentials",
"PostRsoAuthenticatorV1AuthenticationApple": "Authenticate a player with apple open id token.",
"PostRsoAuthenticatorV1AuthenticationCode": "Create a new authentication session with code from a previous federated authentication.",
"PostRsoAuthenticatorV1AuthenticationFacebook": "Authenticate a player with facebook access token.",
"PostRsoAuthenticatorV1AuthenticationGamecenter": "Authenticate a player with gamecenter credentials.",
"PostRsoAuthenticatorV1AuthenticationGoogle": "Authenticate a player with google open id token.",
"PostRsoAuthenticatorV1AuthenticationRedirect": "Redirect the current authentication to the given url",
"PostRsoAuthenticatorV1AuthenticationRiotIdentity": "Create a new authentication with riot credentials.",
"PostRsoAuthenticatorV1Login": "Completes authentication given a login token",
"PostRsoAuthenticatorV1WebAuthenticationUrl": "Provides a url for performing a web based authentication",
"PostRsoMobileUiV1AccountPromotionInitiate": "",
"PostRsoMobileUiV1AuthenticationRedirect": "",
"PostRsoMobileUiV1DebugBrowserRedirect": "",
"PostRsoMobileUiV1DebugSdk": "",
"PostRsoMobileUiV1DebugWebviewDecideNavigationPolicy": "",
"PostRsoMobileUiV1DebugWebviewJavascriptMessage": "",
"PostRsoMobileUiV1DebugWebviewLaunch": "Debug endpoint to detect page launches",
"PostRsoMobileUiV1DebugWebviewLoadErrorPage": "",
"PostRsoMobileUiV1DebugWebviewSimulateOnfinish": "Simulates the callback from the web view closing",
"PostRsoMobileUiV1EulaInitiate": "",
"PostRsoMobileUiV1FederatedLogin": "",
"PostRsoMobileUiV1IosAuthRedirect": "iOS application open url event",
"PostRsoMobileUiV1LoginInitiate": "",
"PostRsoMobileUiV1RegionElection": "Initiates the display of the Region Election UI",
"PostRsoMobileUiV1ShowGameOutOfDate": "Show a native dialog displaying game is out of date and redirecting user to app store",
"PostRsoMobileUiV1VngProfileByProductId": "",
"PostRsoMobileUiV1VngRegisterByProductId": "",
"PostRsoMobileUiV2EulaInitiate": "",
"PostScdV1Enabled": "Activates communication to the SCD service.",
"PostScdV1UrlPatternsTest": "Returns whether a url refers to SCD-protected content",
"PostTelemetryV1CommonDataByKey": "Adds/updates a common data key and value to be sent with every subsequent event.",
"PostTelemetryV1EventsByEventType": "Adds a new event to be sent to Dradis and/or other analytics/monitoring data sinks. All events will have their eventType prefixed",
"PostTelemetryV1SingularEventByEventName": "Sends an event to Singular (hits a derivative of the Singular s2s 'event' endpoint).",
"PostTelemetryV1SingularSession": "Starts a session with Singular (hits the Singular s2s 'launch' endpoint).",
"PostTelemetryV2MetadataBySchemaPrefixByMetadataEntityByPropertyName": "Sets the metadata to automatically apply to a type of analytics platform event",
"PostVanguardV1CheckVanguardService": "Check if Vanguard is running",
"PostVoiceChatV1InitializeProviderByProductName": "Eagerly initialize a provider. Needed for device settings to update before a first session is established",
"PostVoiceChatV1PushToTalkCheckAvailable": "Use to check if we have permissions to start push to talk",
"PostVoiceChatV2PushToTalkCheckAvailable": "Use to check if we have permissions to start push to talk",
"PostVoiceChatV2Sessions": "Join a session with game-specific JWT token",
"PostVoiceChatV3SessionsByProductName": "Join a session with game-specific JWT token",
"PutAgeRestrictionV1DebugAgeRestrictionProductsByProductId": "DEBUG: Sets the age-restriction state for the productId",
"PutChatV1SessionState": "edit session state for specific product",
"PutChatV1Settings": "Update chat settings, complete overwrite",
"PutChatV2Me": "Put/update a multi-game presence for a specific product",
"PutChatV2SessionState": "edit session state for specific product",
"PutChatV3Friends": "Update a friend",
"PutChatV3Groups": "Update a friend group",
"PutChatV3GroupsOrder": "Order the friend groups",
"PutChatV3Me": "Put/update a multi-game presence for a specific product",
"PutChatV4ConversationsActive": "Set active conversation",
"PutChatV4ConversationsByCid": "Edit conversation by cid",
"PutChatV4Friends": "Update a friend",
"PutChatV4Groups": "Update a friend group",
"PutChatV4GroupsOrder": "Order the friend groups",
"PutChatV5Conversations": "Edit conversation",
"PutChatV5ConversationsActive": "Set active conversation",
"PutChatV5Participants": "edit a player to mute or unmute them, across all conversations",
"PutChatV6Conversations": "Edit conversation",
"PutChatV6ConversationsActive": "Set active conversation",
"PutChatV7Conversations": "Edit conversation",
"PutChatV7ConversationsActive": "Set active conversation",
"PutClientConfigV1Authorization": "Updates the authorization information for this plugin. Pushed by the ClientConfigDepInjector. If this is the first authorization of session, triggers an initial fetch of player configuration.",
"PutClientConfigV1RefreshConfigStatus": "Refresh config status.",
"PutClientConfigV1Sessions": "Updates the cached sessions.",
"PutClientConfigV2EntitlementsToken": "Accepts updated entitlements token. Pushed by the ClientConfigDepInjector. Changes in entitlements trigger refresh of player configuration.",
"PutClientConfigV2NamespaceChanges": "Refresh config status.",
"PutClientFeatureFlagsV1DebugMockData": "Sets the current set of mock data for the plugin.",
"PutClientFeatureFlagsV1DebugMockMode": "Enters mock mode, which allows using fake client-config data.",
"PutClientFeatureFlagsV1DebugOverridesFlagsByNamespaceByFlag": "Forcibly sets the value of a particular feature flag.",
"PutEulaV1AgreementAcceptance": "Accepts the most recent EULA for the current user.",
"PutEulaV1DebugAgreementShortAgreementContent": "Simulate short agreement content. This is disabled in public builds.",
"PutInfoRadiatorV1CustomHeartbeatMetricByName": "Create or update the value of a custom heartbeat metric",
"PutNativeUxV1CloseGameRunningDialog": "Closes the game running modal dialog if it exists",
"PutNativeUxV1DisplayGameRunningDialog": "Display a modal dialog when the user attempts to close the foundation with a game running.",
"PutNativeUxV1DisplayKeepGameUpToDateDialog": "Display a modal dialog after the user closes a game for the first time, asking them if they'd like it automatically updated.",
"PutPatchV1Configuration": "Configure plugin settings such as cache size and location",
"PutPatchV1InstallsByInstallId": "Register a new install",
"PutPatchV1InstallsByInstallIdRequestsPatch": "Submit patch request for install",
"PutPatchV1InstallsByInstallIdRequestsPreview": "Submit preview request for install",
"PutPatchV1InstallsByInstallIdRequestsRepair": "Triggers a repair operation",
"PutPatchV1InstallsByInstallIdRequestsSeed": "Submit seed request for install",
"PutPatchV2Configuration": "Configure patcher settings such as thread count and timeout.",
"PutPatchV2ProductsByProductId": "Register a new product",
"PutPatchV2ProductsByProductIdInstallsByInstallId": "Register a new install",
"PutPatchV2ProductsByProductIdInstallsByInstallIdComponentsByComponentId": "Register a new component.",
"PutPlayerPreferencesV1DataByType": "Puts any string for the specified type into the Player Preferences service",
"PutPlayerPreferencesV1DataJsonByType": "Puts any valid JSON object for the specified type into the Player Preferences service",
"PutProductIntegrationDepsV1AppRepairApplyRequestsProductsByProductIdPatchlinesByPatchlineId": "Applies a game repair by opening Riot Client and repairing the game (on Desktop).",
"PutProductIntegrationDepsV1AppUpdateApplyRequestsProductsByProductIdPatchlinesByPatchlineId": "Applies a game update by opening Riot Client and patching the game (on Desktop) or exiting to the App Store (on Mobile).",
"PutProductIntegrationDepsV1AppUpdateStatusesProductsByProductIdPatchlinesByPatchlineId": "Push the current app update status for a given product and patchline",
"PutProductIntegrationV1AppRepairApply": "Applies a game repair by opening Riot Client and repairing the game once the game is closed (on Desktop).",
"PutProductIntegrationV1AppRepairImmediateRepair": "Starts a game repair and returns a repair status callback path.",
"PutProductIntegrationV1AppUpdateApply": "Applies a game update by opening Riot Client and patching the game (on Desktop) or exiting to the App Store (on Mobile).",
"PutProductIntegrationV1DebugAppRepairApply": "Debug endpoint to apply a repair by session id",
"PutProductIntegrationV1DebugAppRepairImmediateRepair": "Starts a game repair and returns a repair status callback path.",
"PutProductIntegrationV1DebugAppUpdateApply": "Debug endpoint to apply an update by session id",
"PutProductIntegrationV1DebugAppUpdateStatusesBySessionId": "Debug endpoint to update the app's update status by session id",
"PutProductLauncherV1ProductsByProductIdPatchlinesByPatchlineId": "Recover a session for a product that is already running, but Riot Client Services doesn't know about since it just started up.",
"PutProductMetadataV1DebugMockDataBySource": "Sets the current set of mock data for the plugin.",
"PutProductMetadataV1DebugMockMode": "Enters mock mode, which allows using mock product and patchline data.",
"PutRiotClientLifecycleStateV1StateByStateByParamSubscriberBySubscriberSerialNumber": "Sets a serial number for a parameterized state.",
"PutRiotClientLifecycleStateV1StateByStateSubscriberBySubscriberSerialNumber": "Sets a single named serial number.",
"PutRiotClientLifecycleV1ProductContext": "Sets the product and patchline to launch.",
"PutRiotClientLifecycleV1UxCommand": "Sets a new UX command that the default client UX app should process",
"PutRiotclientProductLocalesProductsByProductIdPatchlinesByPatchlineId": "Sets the locale of the product with the specified installId",
"PutRiotclientRegionLocale": "Update the region and locale.",
"PutRiotclientSplash": "Show the splash screen.",
"PutRiotclientUxLoadComplete": "Ux notification that it has completed loading the main window.",
"PutRiotclientV1AuthTokensByAuthToken": "Register an auth token. This is any alpha-numeric string that will be used as a password with the `riot` user when making requests.",
"PutRnetLifecycleV1Hide": "Hide the UX.",
"PutRnetLifecycleV1ProductContext": "Sets the product to launch, following the product context-flow of checking auth, update, and patch state.",
"PutRnetLifecycleV1Quit": "Quit Riot Client. If any games are running show the games-running exit-dialog.",
"PutRnetLifecycleV1Restart": "Restarts Riot Client. If any games are running show the games-running exit-dialog.",
"PutRnetLifecycleV2UxCommand": "Sets a new UX command that the default client UX app should process",
"PutRnetProductRegistryV1MoveInstallRequestsProductsByProductIdPatchlinesByPatchlineId": "Request to move the install for a product.",
"PutRnetProductRegistryV1VerifyInstallProductsByProductIdPatchlinesByPatchlineId": "Verify that a specific product's patchline is installed via patch plugin",
"PutRnetProductRegistryV4InstallSettingsProductsByProductIdPatchlinesByPatchlineId": "Sets the specified settings for the particular product and patchline, to the .product_settings.yaml file. Settings that are not specified in the body argument are not modified.",
"PutRnetProductRegistryV4InstallSettingsProductsByProductIdPatchlinesByPatchlineIdByPath": "Sets the specified settings for the particular product and patchline, to the .product_settings.yaml file. Settings that are not specified in the body argument are not modified.",
"PutRnetProductRegistryV4PatchRequestsProductsByProductIdPatchlinesByPatchlineId": "Submit a request to start patching the patchline.",
"PutRnetProductRegistryV4PriorityPatchRequestsProductsByProductIdPatchlinesByPatchlineId": "Starts a priority patch request for a product, which will complete patching before any automatic patching operation.",
"PutRnetProductRegistryV4ProductsByProductIdPatchlinesByPatchlineId": "Updates a patchline resource with these possible properties: 'patching-policy': describes whether a patchline is kept up-to-date automatically by Riot Client (auto), or if the user must choose when to patch the patchline (manual); 'patching-ask-policy': describes whether we should ask the user whether they want to keep the patchline automatically up-to-date after the first launch. This will be 'ask' if the user has never been asked before, and set to 'never' once they have been asked.",
"PutRnetProductRegistryV4ProductsByProductIdPatchlinesByPatchlineIdShortcut": "Create or update the shortcut for a product, optionally at a specific path",
"PutRnetProductRegistryV4SessionPatchLockProductsByProductIdPatchlineByPatchlineId": "Acquires a shared session patch lock for the product-patchline",
"PutRnetSelfUpdateV1Enabled": "Enable or disable self-update. No-ops if permanently disabled (e.g. disabled by command line flags).",
"PutRnetSelfUpdateV1Repair": "Trigger a repair because there was an error updating.",
"PutRnetSelfUpdateV1Retry": "Retry self-update because there was an error updating",
"PutRsoAuthV1Config": "Configure the RSO endpoint",
"PutRsoAuthV1SessionCredentials": "Update an authentication session with credentials to login.",
"PutRsoAuthV1SessionLoginToken": "Update an authentication session with a token from rso-authenticator.",
"PutRsoAuthV1SessionMultifactor": "Update an authentication session with multifactor input to complete login.",
"PutRsoAuthV1SessionPersistence": "Takes a `BindingProperty` and restores the session state.",
"PutRsoAuthV1SessionReauthentication": "Update an authentication session with player password to reauthenticate.",
"PutRsoAuthV1SessionSignupToken": "Update an authentication session with a token from signup-api.",
"PutRsoAuthenticatorV1Authentication": "Update the current prompt for authentication.",
"PutRsoAuthenticatorV1AuthenticationLinkApple": "Link the current authentication with an existing account with apple open id token.",
"PutRsoAuthenticatorV1AuthenticationLinkCode": "Link the current authentication with a code from a previous federated authentication.",
"PutRsoAuthenticatorV1AuthenticationLinkFacebook": "Link the current authentication with an existing account with facebook access token.",
"PutRsoAuthenticatorV1AuthenticationLinkGamecenter": "Link the current authentication with an existing account with gamecenter credentials.",
"PutRsoAuthenticatorV1AuthenticationLinkGoogle": "Link the current authentication with an existing account with google open id token.",
"PutRsoAuthenticatorV1AuthenticationLinkRiotIdentity": "Link the current authentication with an existing account with riot identity.",
"PutRsoMobileUiV1RegionElection": "Programmatically update the state of the Region Election UI",
"PutTelemetryV1MetricsByName": "Pushes a metric sample to a public collector endpoint.",
"PutTelemetryV1MetricsConfig": "Updates the configuration for sending metrics to the public collectors.Values are persisted to install settings for this installation.",
"PutTelemetryV1StructuredLogs": "Handles a new structured log message for pushing to a public Collector-V1 endpoint. Structured log fields must be of the following types: bool, string, float, int, uint",
"PutTelemetryV2DisabledEvents": "Receives a list of event IDs to disable. Disabled events recieved via `/telemetry/v2/events/{id}` will be dropped.",
"PutTelemetryV2EventsById": "Sends the event to the Analytics Pipeline CollectorV2 endpoint (https://data.riotgames.com). This backend differs from /v1/events as it requires schemas to be registered in the schema repository.",
"PutTelemetryV2EventsExtendedById": "Sends the event to the Analytics Pipeline CollectorV2 endpoint (https://data.riotgames.com). This backend differs from /v1/events as it requires schemas to be registered in the schema repository.",
"PutTelemetryV2EventsSchemalessById": "Sends the event directly to New Relic, without sending the data to AP.",
"PutVanguardV1Update": "Request that Vanguard update, prompting UAC if required.",
"PutVoiceChatV1PushToTalk": "Set voice chat push to talk configuration",
"PutVoiceChatV2DevicesCapturePromptForPermission": "Prompts the user for permission to use the microphone, if required.",
"PutVoiceChatV2PushToTalkByProductName": "Set voice chat push to talk configuration",
"PutVoiceChatV2Sessions": "Update the properties for all sessions",
"PutVoiceChatV2SessionsById": "Update the properties for a session",
"PutVoiceChatV2SessionsBySessionIdParticipantsByParticipantId": "Update local participant details",
"PutVoiceChatV2Settings": "Update current voice chat settings",
"PutVoiceChatV3SessionsByProductName": "Update the properties for all sessions",
"PutVoiceChatV3SessionsByProductNameById": "Update the properties for a session",
"PutVoiceChatV3SessionsByProductNameBySessionIdParticipantsByParticipantId": "Update local participant details",
"PutVoiceChatV3SettingsByProductName": "Update current voice chat settings",
"Subscribe": "Subscribes to a given event",
"Unsubscribe": "Unsubscribes from a given event",
"WebSocketFormat": "Controls the console output format"
},
"types": {
"AccessToken": "",
"AccountsSecurityAccountsSecurity": "",
"AccountsSecurityHomeBaseCountry": "",
"AccountsSecurityProductSessionSession": "",
"AgeRestriction": "",
"AgeRestrictionAgeRestriction": "",
"AgeRestrictionHomeBaseCountry": "",
"AgentRequest": "",
"AgentRequestQueue": "",
"AgentRequestType": "",
"AgentResourceEvent": "",
"AgentResourceEventType": "",
"AgentSession": "",
"AliasRequiredResponse": "",
"AntiAddictionAntiAddictionConfig": "",
"AntiAddictionAntiAddictionPolicy": "",
"AntiAddictionAntiAddictionState": "",
"AntiAddictionDisplayType": "",
"AntiAddictionPolicyType": "",
"AntiAddictionProductSessionSession": "",
"AppCommandAuthStatus": "",
"AppCommandAuthStatusState": "Auth status state.",
"AppCommandAuthorizationResponse": "",
"AppCommandAuthorizationResponseType": "Authorization response to indicate the follow up for the login flow.",
"AppCommandCommand": "",
"AppFocusRequest": "",
"AppInfo": "",
"AppRepairApplyRequest": "",
"AppUpdateApplyRequest": "",
"AuthenticatedConnection": "Information for a connection to this application for a specific auth token/session",
"AuthenticationTypeEnum": "",
"BindingFullApiHelp": "Describes the exposed native API.",
"BindingFullArgumentHelp": "Describes a function parameter.",
"BindingFullEnumValueHelp": "Describes an enumerator.",
"BindingFullEventHelp": "Describes an event.",
"BindingFullFieldHelp": "Describes a member of a struct.",
"BindingFullFunctionHelp": "Describes a function.",
"BindingFullTypeHelp": "Describes a struct or enum type.",
"BindingFullTypeIdentifier": "Describes the type of a value.",
"BindingHelpFormat": "Help format for binding functions and types.",
"BootstrapProcessRequest": "",
"BuildInfo": "",
"ChatAccountState": "",
"ChatActiveConvo": "",
"ChatApiTelemetry": "",
"ChatBlockPid": "",
"ChatBlockedAction": "",
"ChatBlockedMapResource": "",
"ChatChatBlockedList": "",
"ChatChatBlockedPlayer": "",
"ChatChatFriend": "",
"ChatChatFriends": "",
"ChatChatGamePresence": "",
"ChatChatGamePresenceUpdate": "",
"ChatChatGroup": "",
"ChatChatGroupList": "",
"ChatChatGroupUpdate": "",
"ChatChatMessage": "",
"ChatChatMessageList": "",
"ChatChatParticipant": "",
"ChatChatParticipants": "",
"ChatChatPlayer": "",
"ChatChatPlayerParticipants": "",
"ChatChatSession": "",
"ChatChatSessionData": "",
"ChatChatSessionState": "",
"ChatChatSettings": "",
"ChatChatSharedPayload": "",
"ChatChatWindowSettings": "",
"ChatConfigReadinessEnum": "",
"ChatConfigStatus": "",
"ChatConversationCreateJoin": "",
"ChatConversationCreateJoinFederated": "",
"ChatConversationEdit": "",
"ChatConversationInitRecent": "",
"ChatConversationInitRecentList": "",
"ChatConversationReadership": "",
"ChatConversationReadershipList": "",
"ChatConversationSetActive": "",
"ChatConvoCid": "",
"ChatConvoJoin": "",
"ChatConvoJoinFederated": "",
"ChatConvoUpdate": "",
"ChatDebugChatGamePresence": "",
"ChatDebugConfig": "",
"ChatDeleteMessage": "",
"ChatEntitlementsTokenResource": "",
"ChatError": "",
"ChatErrorId": "",
"ChatErrorList": "",
"ChatFriendGroup": "",
"ChatFriendGroupCreate": "",
"ChatFriendGroupList": "",
"ChatFriendGroupName": "",
"ChatFriendGroupOrder": "",
"ChatFriendGroupSyncList": "",
"ChatFriendGroupUpdate": "",
"ChatFriendPid": "",
"ChatFriendRequest": "",
"ChatFriendRequestAdd": "",
"ChatFriendRequestList": "",
"ChatFriendRequestListPuuid": "",
"ChatFriendRequestPost": "",
"ChatFriendRequestPuuid": "",
"ChatFriendSubscriptionType": "",
"ChatFriendUpdate": "",
"ChatFriendUpdateList": "",
"ChatGroupsFriendGroupSync": "",
"ChatJWTVerifyResource": "",
"ChatMessage": "",
"ChatMessageList": "",
"ChatMessagePost": "",
"ChatMessageSend": "",
"ChatMessageType": "",
"ChatMessagesArchive": "",
"ChatMessagesFetchArchive": "",
"ChatMessagesSendChatMessage": "",
"ChatMultiGamePresence": "",
"ChatMultiGamePresenceDelete": "",
"ChatMultiGamePresenceList": "",
"ChatParticipantEdit": "",
"ChatPlayerAffinityInput": "",
"ChatPlayerAffinityToken": "",
"ChatPlayerPreferencesResource": "",
"ChatPresenceDelete": "",
"ChatPresenceProduct": "",
"ChatPrivacyReceiveBlockedPlayer": "",
"ChatProductSession": "",
"ChatProductSessionState": "",
"ChatProtocolPreference": "",
"ChatReadCollectionData": "",
"ChatReadPoint": "",
"ChatRequestPid": "",