workos 7.0.0 → 7.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/.github/workflows/lint.yml +1 -1
- data/.github/workflows/release-please.yml +30 -2
- data/.github/workflows/release.yml +1 -1
- data/.last-synced-sha +1 -0
- data/.oagen-manifest.json +739 -4
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +23 -0
- data/Gemfile.lock +2 -2
- data/README.md +0 -1
- data/lib/workos/admin_portal/domain_verification_intent_options.rb +18 -0
- data/lib/workos/admin_portal/generate_link.rb +3 -3
- data/lib/workos/admin_portal/intent_options.rb +6 -2
- data/lib/workos/admin_portal.rb +3 -3
- data/lib/workos/authorization.rb +61 -67
- data/lib/workos/client.rb +8 -0
- data/lib/workos/directory_sync/directory_user_with_groups.rb +10 -2
- data/lib/workos/groups/create_group.rb +22 -0
- data/lib/workos/groups/create_group_membership.rb +18 -0
- data/lib/workos/groups/update_group.rb +7 -0
- data/lib/workos/groups.rb +256 -0
- data/lib/workos/session.rb +16 -5
- data/lib/workos/shared/waitlist_user.rb +37 -0
- data/lib/workos/shared/waitlist_user_approved.rb +34 -0
- data/lib/workos/shared/waitlist_user_created.rb +34 -0
- data/lib/workos/shared/waitlist_user_denied.rb +34 -0
- data/lib/workos/types/create_webhook_endpoint_events.rb +4 -1
- data/lib/workos/types/groups_order.rb +9 -0
- data/lib/workos/types/sso_provider.rb +10 -1
- data/lib/workos/types/user_management_authentication_provider.rb +10 -1
- data/lib/workos/types/user_management_organization_membership_groups_order.rb +9 -0
- data/lib/workos/types/waitlist_user_state.rb +14 -0
- data/lib/workos/user_management/invitation.rb +3 -0
- data/lib/workos/user_management/invitation_accepted_data.rb +3 -0
- data/lib/workos/user_management/invitation_created_data.rb +3 -0
- data/lib/workos/user_management/invitation_resent_data.rb +3 -0
- data/lib/workos/user_management/invitation_revoked_data.rb +3 -0
- data/lib/workos/user_management/user_invite.rb +3 -0
- data/lib/workos/user_management.rb +32 -40
- data/lib/workos/user_management_organization_membership_groups.rb +60 -0
- data/lib/workos/version.rb +1 -1
- data/lib/workos.rb +4 -0
- data/rbi/workos/admin_portal.rbi +2 -2
- data/rbi/workos/authorization.rbi +13 -12
- data/rbi/workos/client.rbi +6 -0
- data/rbi/workos/create_group.rbi +30 -0
- data/rbi/workos/create_group_membership.rbi +24 -0
- data/rbi/workos/domain_verification_intent_options.rbi +24 -0
- data/rbi/workos/generate_link.rbi +2 -2
- data/rbi/workos/groups.rbi +97 -0
- data/rbi/workos/intent_options.rbi +8 -2
- data/rbi/workos/invitation.rbi +6 -0
- data/rbi/workos/invitation_accepted_data.rbi +6 -0
- data/rbi/workos/invitation_created_data.rbi +6 -0
- data/rbi/workos/invitation_resent_data.rbi +6 -0
- data/rbi/workos/invitation_revoked_data.rbi +6 -0
- data/rbi/workos/update_group.rbi +30 -0
- data/rbi/workos/user_invite.rbi +6 -0
- data/rbi/workos/user_management_organization_membership_groups.rbi +25 -0
- data/rbi/workos/waitlist_user.rbi +60 -0
- data/rbi/workos/waitlist_user_approved.rbi +54 -0
- data/rbi/workos/waitlist_user_created.rbi +54 -0
- data/rbi/workos/waitlist_user_denied.rbi +54 -0
- data/test/workos/test_authorization.rb +33 -33
- data/test/workos/test_groups.rb +89 -0
- data/test/workos/test_model_round_trip.rb +153 -24
- data/test/workos/test_session.rb +125 -0
- data/test/workos/test_user_management_organization_membership_groups.rb +33 -0
- metadata +29 -8
- data/lib/workos/user_management/urn_ietf_params_oauth_grant_type_device_code_session_authenticate_request.rb +0 -8
- data/lib/workos/user_management/urn_workos_oauth_grant_type_email_verification_code_session_authenticate_request.rb +0 -8
- data/lib/workos/user_management/urn_workos_oauth_grant_type_magic_auth_code_session_authenticate_request.rb +0 -8
- data/lib/workos/user_management/urn_workos_oauth_grant_type_mfa_totp_session_authenticate_request.rb +0 -8
- data/lib/workos/user_management/urn_workos_oauth_grant_type_organization_selection_session_authenticate_request.rb +0 -8
- /data/lib/workos/{shared → groups}/group.rb +0 -0
data/.oagen-manifest.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version":
|
|
2
|
+
"version": 2,
|
|
3
3
|
"language": "ruby",
|
|
4
|
-
"generatedAt": "2026-04-
|
|
4
|
+
"generatedAt": "2026-04-27T20:55:49.741Z",
|
|
5
5
|
"files": [
|
|
6
6
|
"lib/workos.rb",
|
|
7
7
|
"lib/workos/admin_portal.rb",
|
|
8
|
+
"lib/workos/admin_portal/domain_verification_intent_options.rb",
|
|
8
9
|
"lib/workos/admin_portal/generate_link.rb",
|
|
9
10
|
"lib/workos/admin_portal/intent_options.rb",
|
|
10
11
|
"lib/workos/admin_portal/portal_link_response.rb",
|
|
@@ -159,6 +160,11 @@
|
|
|
159
160
|
"lib/workos/feature_flags/flag_updated_context_previous_attribute_data.rb",
|
|
160
161
|
"lib/workos/feature_flags/flag_updated_data.rb",
|
|
161
162
|
"lib/workos/feature_flags/flag_updated_data_owner.rb",
|
|
163
|
+
"lib/workos/groups.rb",
|
|
164
|
+
"lib/workos/groups/create_group.rb",
|
|
165
|
+
"lib/workos/groups/create_group_membership.rb",
|
|
166
|
+
"lib/workos/groups/group.rb",
|
|
167
|
+
"lib/workos/groups/update_group.rb",
|
|
162
168
|
"lib/workos/inflections.rb",
|
|
163
169
|
"lib/workos/multi_factor_auth.rb",
|
|
164
170
|
"lib/workos/multi_factor_auth/authentication_challenge.rb",
|
|
@@ -239,7 +245,6 @@
|
|
|
239
245
|
"lib/workos/shared/event_context.rb",
|
|
240
246
|
"lib/workos/shared/event_context_actor.rb",
|
|
241
247
|
"lib/workos/shared/event_context_google_analytics_session.rb",
|
|
242
|
-
"lib/workos/shared/group.rb",
|
|
243
248
|
"lib/workos/shared/group_created.rb",
|
|
244
249
|
"lib/workos/shared/group_deleted.rb",
|
|
245
250
|
"lib/workos/shared/group_member_added.rb",
|
|
@@ -247,6 +252,10 @@
|
|
|
247
252
|
"lib/workos/shared/group_member_removed.rb",
|
|
248
253
|
"lib/workos/shared/group_member_removed_data.rb",
|
|
249
254
|
"lib/workos/shared/group_updated.rb",
|
|
255
|
+
"lib/workos/shared/waitlist_user.rb",
|
|
256
|
+
"lib/workos/shared/waitlist_user_approved.rb",
|
|
257
|
+
"lib/workos/shared/waitlist_user_created.rb",
|
|
258
|
+
"lib/workos/shared/waitlist_user_denied.rb",
|
|
250
259
|
"lib/workos/sso.rb",
|
|
251
260
|
"lib/workos/sso/connection.rb",
|
|
252
261
|
"lib/workos/sso/connection_activated.rb",
|
|
@@ -333,6 +342,7 @@
|
|
|
333
342
|
"lib/workos/types/flag_rule_updated_context_previous_attribute_context_access_type.rb",
|
|
334
343
|
"lib/workos/types/flag_updated_context_actor_source.rb",
|
|
335
344
|
"lib/workos/types/generate_link_intent.rb",
|
|
345
|
+
"lib/workos/types/groups_order.rb",
|
|
336
346
|
"lib/workos/types/invitation_accepted_data_state.rb",
|
|
337
347
|
"lib/workos/types/invitation_created_data_state.rb",
|
|
338
348
|
"lib/workos/types/invitation_resent_data_state.rb",
|
|
@@ -392,6 +402,7 @@
|
|
|
392
402
|
"lib/workos/types/user_management_authentication_screen_hint.rb",
|
|
393
403
|
"lib/workos/types/user_management_invitations_order.rb",
|
|
394
404
|
"lib/workos/types/user_management_multi_factor_authentication_order.rb",
|
|
405
|
+
"lib/workos/types/user_management_organization_membership_groups_order.rb",
|
|
395
406
|
"lib/workos/types/user_management_organization_membership_order.rb",
|
|
396
407
|
"lib/workos/types/user_management_organization_membership_statuses.rb",
|
|
397
408
|
"lib/workos/types/user_management_users_authorized_applications_order.rb",
|
|
@@ -411,6 +422,7 @@
|
|
|
411
422
|
"lib/workos/types/vault_kek_created_data_actor_source.rb",
|
|
412
423
|
"lib/workos/types/vault_metadata_read_data_actor_source.rb",
|
|
413
424
|
"lib/workos/types/vault_names_listed_data_actor_source.rb",
|
|
425
|
+
"lib/workos/types/waitlist_user_state.rb",
|
|
414
426
|
"lib/workos/types/webhook_endpoint_json_status.rb",
|
|
415
427
|
"lib/workos/types/webhooks_order.rb",
|
|
416
428
|
"lib/workos/types/widget_session_token_scopes.rb",
|
|
@@ -542,6 +554,7 @@
|
|
|
542
554
|
"lib/workos/user_management/user_updated.rb",
|
|
543
555
|
"lib/workos/user_management/verify_email_address.rb",
|
|
544
556
|
"lib/workos/user_management/verify_email_response.rb",
|
|
557
|
+
"lib/workos/user_management_organization_membership_groups.rb",
|
|
545
558
|
"lib/workos/vault/vault_byok_key_verification_completed.rb",
|
|
546
559
|
"lib/workos/vault/vault_byok_key_verification_completed_data.rb",
|
|
547
560
|
"lib/workos/vault/vault_data_created.rb",
|
|
@@ -704,6 +717,8 @@
|
|
|
704
717
|
"rbi/workos/create_authorization_permission.rbi",
|
|
705
718
|
"rbi/workos/create_authorization_resource.rbi",
|
|
706
719
|
"rbi/workos/create_cors_origin.rbi",
|
|
720
|
+
"rbi/workos/create_group.rbi",
|
|
721
|
+
"rbi/workos/create_group_membership.rbi",
|
|
707
722
|
"rbi/workos/create_m2m_application.rbi",
|
|
708
723
|
"rbi/workos/create_magic_code_and_return.rbi",
|
|
709
724
|
"rbi/workos/create_oauth_application.rbi",
|
|
@@ -737,6 +752,7 @@
|
|
|
737
752
|
"rbi/workos/directory_user_email.rbi",
|
|
738
753
|
"rbi/workos/directory_user_with_groups.rbi",
|
|
739
754
|
"rbi/workos/directory_user_with_groups_email.rbi",
|
|
755
|
+
"rbi/workos/domain_verification_intent_options.rbi",
|
|
740
756
|
"rbi/workos/dsync_activated.rbi",
|
|
741
757
|
"rbi/workos/dsync_activated_data.rbi",
|
|
742
758
|
"rbi/workos/dsync_activated_data_domain.rbi",
|
|
@@ -818,6 +834,7 @@
|
|
|
818
834
|
"rbi/workos/group_member_removed.rbi",
|
|
819
835
|
"rbi/workos/group_member_removed_data.rbi",
|
|
820
836
|
"rbi/workos/group_updated.rbi",
|
|
837
|
+
"rbi/workos/groups.rbi",
|
|
821
838
|
"rbi/workos/intent_options.rbi",
|
|
822
839
|
"rbi/workos/invitation.rbi",
|
|
823
840
|
"rbi/workos/invitation_accepted.rbi",
|
|
@@ -941,6 +958,7 @@
|
|
|
941
958
|
"rbi/workos/update_audit_logs_retention.rbi",
|
|
942
959
|
"rbi/workos/update_authorization_permission.rbi",
|
|
943
960
|
"rbi/workos/update_authorization_resource.rbi",
|
|
961
|
+
"rbi/workos/update_group.rbi",
|
|
944
962
|
"rbi/workos/update_jwt_template.rbi",
|
|
945
963
|
"rbi/workos/update_oauth_application.rbi",
|
|
946
964
|
"rbi/workos/update_organization.rbi",
|
|
@@ -959,6 +977,7 @@
|
|
|
959
977
|
"rbi/workos/user_invite.rbi",
|
|
960
978
|
"rbi/workos/user_management.rbi",
|
|
961
979
|
"rbi/workos/user_management_login_request.rbi",
|
|
980
|
+
"rbi/workos/user_management_organization_membership_groups.rbi",
|
|
962
981
|
"rbi/workos/user_object.rbi",
|
|
963
982
|
"rbi/workos/user_organization_membership.rbi",
|
|
964
983
|
"rbi/workos/user_organization_membership_base_list_data.rbi",
|
|
@@ -988,6 +1007,10 @@
|
|
|
988
1007
|
"rbi/workos/vault_names_listed_data.rbi",
|
|
989
1008
|
"rbi/workos/verify_email_address.rbi",
|
|
990
1009
|
"rbi/workos/verify_email_response.rbi",
|
|
1010
|
+
"rbi/workos/waitlist_user.rbi",
|
|
1011
|
+
"rbi/workos/waitlist_user_approved.rbi",
|
|
1012
|
+
"rbi/workos/waitlist_user_created.rbi",
|
|
1013
|
+
"rbi/workos/waitlist_user_denied.rbi",
|
|
991
1014
|
"rbi/workos/webhook_endpoint_json.rbi",
|
|
992
1015
|
"rbi/workos/webhooks.rbi",
|
|
993
1016
|
"rbi/workos/widget_session_token.rbi",
|
|
@@ -1001,6 +1024,7 @@
|
|
|
1001
1024
|
"test/workos/test_directory_sync.rb",
|
|
1002
1025
|
"test/workos/test_events.rb",
|
|
1003
1026
|
"test/workos/test_feature_flags.rb",
|
|
1027
|
+
"test/workos/test_groups.rb",
|
|
1004
1028
|
"test/workos/test_model_round_trip.rb",
|
|
1005
1029
|
"test/workos/test_multi_factor_auth.rb",
|
|
1006
1030
|
"test/workos/test_organization_domains.rb",
|
|
@@ -1009,7 +1033,718 @@
|
|
|
1009
1033
|
"test/workos/test_radar.rb",
|
|
1010
1034
|
"test/workos/test_sso.rb",
|
|
1011
1035
|
"test/workos/test_user_management.rb",
|
|
1036
|
+
"test/workos/test_user_management_organization_membership_groups.rb",
|
|
1012
1037
|
"test/workos/test_webhooks.rb",
|
|
1013
1038
|
"test/workos/test_widgets.rb"
|
|
1014
|
-
]
|
|
1039
|
+
],
|
|
1040
|
+
"operations": {
|
|
1041
|
+
"POST /api_keys/validations": {
|
|
1042
|
+
"sdkMethod": "create_validation",
|
|
1043
|
+
"service": "api_keys"
|
|
1044
|
+
},
|
|
1045
|
+
"DELETE /api_keys/{id}": {
|
|
1046
|
+
"sdkMethod": "delete_api_key",
|
|
1047
|
+
"service": "api_keys"
|
|
1048
|
+
},
|
|
1049
|
+
"POST /auth/challenges/{id}/verify": {
|
|
1050
|
+
"sdkMethod": "verify_challenge",
|
|
1051
|
+
"service": "multi_factor_auth"
|
|
1052
|
+
},
|
|
1053
|
+
"POST /auth/factors/enroll": {
|
|
1054
|
+
"sdkMethod": "enroll_factor",
|
|
1055
|
+
"service": "multi_factor_auth"
|
|
1056
|
+
},
|
|
1057
|
+
"GET /auth/factors/{id}": {
|
|
1058
|
+
"sdkMethod": "get_factor",
|
|
1059
|
+
"service": "multi_factor_auth"
|
|
1060
|
+
},
|
|
1061
|
+
"DELETE /auth/factors/{id}": {
|
|
1062
|
+
"sdkMethod": "delete_factor",
|
|
1063
|
+
"service": "multi_factor_auth"
|
|
1064
|
+
},
|
|
1065
|
+
"POST /auth/factors/{id}/challenge": {
|
|
1066
|
+
"sdkMethod": "challenge_factor",
|
|
1067
|
+
"service": "multi_factor_auth"
|
|
1068
|
+
},
|
|
1069
|
+
"POST /authkit/oauth2/complete": {
|
|
1070
|
+
"sdkMethod": "complete_oauth2",
|
|
1071
|
+
"service": "connect"
|
|
1072
|
+
},
|
|
1073
|
+
"POST /authorization/organization_memberships/{organization_membership_id}/check": {
|
|
1074
|
+
"sdkMethod": "check",
|
|
1075
|
+
"service": "authorization"
|
|
1076
|
+
},
|
|
1077
|
+
"GET /authorization/organization_memberships/{organization_membership_id}/resources": {
|
|
1078
|
+
"sdkMethod": "list_resources_for_membership",
|
|
1079
|
+
"service": "authorization"
|
|
1080
|
+
},
|
|
1081
|
+
"GET /authorization/organization_memberships/{organization_membership_id}/resources/{resource_id}/permissions": {
|
|
1082
|
+
"sdkMethod": "list_effective_permissions",
|
|
1083
|
+
"service": "authorization"
|
|
1084
|
+
},
|
|
1085
|
+
"GET /authorization/organization_memberships/{organization_membership_id}/resources/{resource_type_slug}/{external_id}/permissions": {
|
|
1086
|
+
"sdkMethod": "list_effective_permissions_by_external_id",
|
|
1087
|
+
"service": "authorization"
|
|
1088
|
+
},
|
|
1089
|
+
"GET /authorization/organization_memberships/{organization_membership_id}/role_assignments": {
|
|
1090
|
+
"sdkMethod": "list_role_assignments",
|
|
1091
|
+
"service": "authorization"
|
|
1092
|
+
},
|
|
1093
|
+
"POST /authorization/organization_memberships/{organization_membership_id}/role_assignments": {
|
|
1094
|
+
"sdkMethod": "assign_role",
|
|
1095
|
+
"service": "authorization"
|
|
1096
|
+
},
|
|
1097
|
+
"DELETE /authorization/organization_memberships/{organization_membership_id}/role_assignments": {
|
|
1098
|
+
"sdkMethod": "remove_role",
|
|
1099
|
+
"service": "authorization"
|
|
1100
|
+
},
|
|
1101
|
+
"DELETE /authorization/organization_memberships/{organization_membership_id}/role_assignments/{role_assignment_id}": {
|
|
1102
|
+
"sdkMethod": "remove_role_assignment",
|
|
1103
|
+
"service": "authorization"
|
|
1104
|
+
},
|
|
1105
|
+
"GET /authorization/organizations/{organizationId}/roles": {
|
|
1106
|
+
"sdkMethod": "list_organization_roles",
|
|
1107
|
+
"service": "authorization"
|
|
1108
|
+
},
|
|
1109
|
+
"POST /authorization/organizations/{organizationId}/roles": {
|
|
1110
|
+
"sdkMethod": "create_organization_role",
|
|
1111
|
+
"service": "authorization"
|
|
1112
|
+
},
|
|
1113
|
+
"GET /authorization/organizations/{organizationId}/roles/{slug}": {
|
|
1114
|
+
"sdkMethod": "get_organization_role",
|
|
1115
|
+
"service": "authorization"
|
|
1116
|
+
},
|
|
1117
|
+
"PATCH /authorization/organizations/{organizationId}/roles/{slug}": {
|
|
1118
|
+
"sdkMethod": "update_organization_role",
|
|
1119
|
+
"service": "authorization"
|
|
1120
|
+
},
|
|
1121
|
+
"DELETE /authorization/organizations/{organizationId}/roles/{slug}": {
|
|
1122
|
+
"sdkMethod": "delete_organization_role",
|
|
1123
|
+
"service": "authorization"
|
|
1124
|
+
},
|
|
1125
|
+
"POST /authorization/organizations/{organizationId}/roles/{slug}/permissions": {
|
|
1126
|
+
"sdkMethod": "add_organization_role_permission",
|
|
1127
|
+
"service": "authorization"
|
|
1128
|
+
},
|
|
1129
|
+
"PUT /authorization/organizations/{organizationId}/roles/{slug}/permissions": {
|
|
1130
|
+
"sdkMethod": "set_organization_role_permissions",
|
|
1131
|
+
"service": "authorization"
|
|
1132
|
+
},
|
|
1133
|
+
"DELETE /authorization/organizations/{organizationId}/roles/{slug}/permissions/{permissionSlug}": {
|
|
1134
|
+
"sdkMethod": "remove_organization_role_permission",
|
|
1135
|
+
"service": "authorization"
|
|
1136
|
+
},
|
|
1137
|
+
"GET /authorization/organizations/{organization_id}/resources/{resource_type_slug}/{external_id}": {
|
|
1138
|
+
"sdkMethod": "get_resource_by_external_id",
|
|
1139
|
+
"service": "authorization"
|
|
1140
|
+
},
|
|
1141
|
+
"PATCH /authorization/organizations/{organization_id}/resources/{resource_type_slug}/{external_id}": {
|
|
1142
|
+
"sdkMethod": "update_resource_by_external_id",
|
|
1143
|
+
"service": "authorization"
|
|
1144
|
+
},
|
|
1145
|
+
"DELETE /authorization/organizations/{organization_id}/resources/{resource_type_slug}/{external_id}": {
|
|
1146
|
+
"sdkMethod": "delete_resource_by_external_id",
|
|
1147
|
+
"service": "authorization"
|
|
1148
|
+
},
|
|
1149
|
+
"GET /authorization/organizations/{organization_id}/resources/{resource_type_slug}/{external_id}/organization_memberships": {
|
|
1150
|
+
"sdkMethod": "list_memberships_for_resource_by_external_id",
|
|
1151
|
+
"service": "authorization"
|
|
1152
|
+
},
|
|
1153
|
+
"GET /authorization/resources": {
|
|
1154
|
+
"sdkMethod": "list_resources",
|
|
1155
|
+
"service": "authorization"
|
|
1156
|
+
},
|
|
1157
|
+
"POST /authorization/resources": {
|
|
1158
|
+
"sdkMethod": "create_resource",
|
|
1159
|
+
"service": "authorization"
|
|
1160
|
+
},
|
|
1161
|
+
"GET /authorization/resources/{resource_id}": {
|
|
1162
|
+
"sdkMethod": "get_resource",
|
|
1163
|
+
"service": "authorization"
|
|
1164
|
+
},
|
|
1165
|
+
"PATCH /authorization/resources/{resource_id}": {
|
|
1166
|
+
"sdkMethod": "update_resource",
|
|
1167
|
+
"service": "authorization"
|
|
1168
|
+
},
|
|
1169
|
+
"DELETE /authorization/resources/{resource_id}": {
|
|
1170
|
+
"sdkMethod": "delete_resource",
|
|
1171
|
+
"service": "authorization"
|
|
1172
|
+
},
|
|
1173
|
+
"GET /authorization/resources/{resource_id}/organization_memberships": {
|
|
1174
|
+
"sdkMethod": "list_memberships_for_resource",
|
|
1175
|
+
"service": "authorization"
|
|
1176
|
+
},
|
|
1177
|
+
"GET /authorization/roles": {
|
|
1178
|
+
"sdkMethod": "list_environment_roles",
|
|
1179
|
+
"service": "authorization"
|
|
1180
|
+
},
|
|
1181
|
+
"POST /authorization/roles": {
|
|
1182
|
+
"sdkMethod": "create_environment_role",
|
|
1183
|
+
"service": "authorization"
|
|
1184
|
+
},
|
|
1185
|
+
"GET /authorization/roles/{slug}": {
|
|
1186
|
+
"sdkMethod": "get_environment_role",
|
|
1187
|
+
"service": "authorization"
|
|
1188
|
+
},
|
|
1189
|
+
"PATCH /authorization/roles/{slug}": {
|
|
1190
|
+
"sdkMethod": "update_environment_role",
|
|
1191
|
+
"service": "authorization"
|
|
1192
|
+
},
|
|
1193
|
+
"POST /authorization/roles/{slug}/permissions": {
|
|
1194
|
+
"sdkMethod": "add_environment_role_permission",
|
|
1195
|
+
"service": "authorization"
|
|
1196
|
+
},
|
|
1197
|
+
"PUT /authorization/roles/{slug}/permissions": {
|
|
1198
|
+
"sdkMethod": "set_environment_role_permissions",
|
|
1199
|
+
"service": "authorization"
|
|
1200
|
+
},
|
|
1201
|
+
"GET /authorization/permissions": {
|
|
1202
|
+
"sdkMethod": "list_permissions",
|
|
1203
|
+
"service": "authorization"
|
|
1204
|
+
},
|
|
1205
|
+
"POST /authorization/permissions": {
|
|
1206
|
+
"sdkMethod": "create_permission",
|
|
1207
|
+
"service": "authorization"
|
|
1208
|
+
},
|
|
1209
|
+
"GET /authorization/permissions/{slug}": {
|
|
1210
|
+
"sdkMethod": "get_permission",
|
|
1211
|
+
"service": "authorization"
|
|
1212
|
+
},
|
|
1213
|
+
"PATCH /authorization/permissions/{slug}": {
|
|
1214
|
+
"sdkMethod": "update_permission",
|
|
1215
|
+
"service": "authorization"
|
|
1216
|
+
},
|
|
1217
|
+
"DELETE /authorization/permissions/{slug}": {
|
|
1218
|
+
"sdkMethod": "delete_permission",
|
|
1219
|
+
"service": "authorization"
|
|
1220
|
+
},
|
|
1221
|
+
"GET /connect/applications": {
|
|
1222
|
+
"sdkMethod": "list_applications",
|
|
1223
|
+
"service": "connect"
|
|
1224
|
+
},
|
|
1225
|
+
"POST /connect/applications": {
|
|
1226
|
+
"sdkMethod": "create_application",
|
|
1227
|
+
"service": "connect"
|
|
1228
|
+
},
|
|
1229
|
+
"POST /connect/applications#CreateOAuthApplication": {
|
|
1230
|
+
"sdkMethod": "create_oauth_application",
|
|
1231
|
+
"service": "connect"
|
|
1232
|
+
},
|
|
1233
|
+
"POST /connect/applications#CreateM2MApplication": {
|
|
1234
|
+
"sdkMethod": "create_m2m_application",
|
|
1235
|
+
"service": "connect"
|
|
1236
|
+
},
|
|
1237
|
+
"GET /connect/applications/{id}": {
|
|
1238
|
+
"sdkMethod": "get_application",
|
|
1239
|
+
"service": "connect"
|
|
1240
|
+
},
|
|
1241
|
+
"PUT /connect/applications/{id}": {
|
|
1242
|
+
"sdkMethod": "update_application",
|
|
1243
|
+
"service": "connect"
|
|
1244
|
+
},
|
|
1245
|
+
"DELETE /connect/applications/{id}": {
|
|
1246
|
+
"sdkMethod": "delete_application",
|
|
1247
|
+
"service": "connect"
|
|
1248
|
+
},
|
|
1249
|
+
"GET /connect/applications/{id}/client_secrets": {
|
|
1250
|
+
"sdkMethod": "list_application_client_secrets",
|
|
1251
|
+
"service": "connect"
|
|
1252
|
+
},
|
|
1253
|
+
"POST /connect/applications/{id}/client_secrets": {
|
|
1254
|
+
"sdkMethod": "create_application_client_secret",
|
|
1255
|
+
"service": "connect"
|
|
1256
|
+
},
|
|
1257
|
+
"DELETE /connect/client_secrets/{id}": {
|
|
1258
|
+
"sdkMethod": "delete_client_secret",
|
|
1259
|
+
"service": "connect"
|
|
1260
|
+
},
|
|
1261
|
+
"GET /connections": {
|
|
1262
|
+
"sdkMethod": "list_connections",
|
|
1263
|
+
"service": "sso"
|
|
1264
|
+
},
|
|
1265
|
+
"GET /connections/{id}": {
|
|
1266
|
+
"sdkMethod": "get_connection",
|
|
1267
|
+
"service": "sso"
|
|
1268
|
+
},
|
|
1269
|
+
"DELETE /connections/{id}": {
|
|
1270
|
+
"sdkMethod": "delete_connection",
|
|
1271
|
+
"service": "sso"
|
|
1272
|
+
},
|
|
1273
|
+
"POST /data-integrations/{slug}/authorize": {
|
|
1274
|
+
"sdkMethod": "authorize_data_integration",
|
|
1275
|
+
"service": "pipes"
|
|
1276
|
+
},
|
|
1277
|
+
"POST /data-integrations/{slug}/token": {
|
|
1278
|
+
"sdkMethod": "create_data_integration_token",
|
|
1279
|
+
"service": "pipes"
|
|
1280
|
+
},
|
|
1281
|
+
"GET /directories": {
|
|
1282
|
+
"sdkMethod": "list_directories",
|
|
1283
|
+
"service": "directory_sync"
|
|
1284
|
+
},
|
|
1285
|
+
"GET /directories/{id}": {
|
|
1286
|
+
"sdkMethod": "get_directory",
|
|
1287
|
+
"service": "directory_sync"
|
|
1288
|
+
},
|
|
1289
|
+
"DELETE /directories/{id}": {
|
|
1290
|
+
"sdkMethod": "delete_directory",
|
|
1291
|
+
"service": "directory_sync"
|
|
1292
|
+
},
|
|
1293
|
+
"GET /directory_groups": {
|
|
1294
|
+
"sdkMethod": "list_groups",
|
|
1295
|
+
"service": "directory_sync"
|
|
1296
|
+
},
|
|
1297
|
+
"GET /directory_groups/{id}": {
|
|
1298
|
+
"sdkMethod": "get_group",
|
|
1299
|
+
"service": "directory_sync"
|
|
1300
|
+
},
|
|
1301
|
+
"GET /directory_users": {
|
|
1302
|
+
"sdkMethod": "list_users",
|
|
1303
|
+
"service": "directory_sync"
|
|
1304
|
+
},
|
|
1305
|
+
"GET /directory_users/{id}": {
|
|
1306
|
+
"sdkMethod": "get_user",
|
|
1307
|
+
"service": "directory_sync"
|
|
1308
|
+
},
|
|
1309
|
+
"GET /events": {
|
|
1310
|
+
"sdkMethod": "list_events",
|
|
1311
|
+
"service": "events"
|
|
1312
|
+
},
|
|
1313
|
+
"GET /feature-flags": {
|
|
1314
|
+
"sdkMethod": "list_feature_flags",
|
|
1315
|
+
"service": "feature_flags"
|
|
1316
|
+
},
|
|
1317
|
+
"GET /feature-flags/{slug}": {
|
|
1318
|
+
"sdkMethod": "get_feature_flag",
|
|
1319
|
+
"service": "feature_flags"
|
|
1320
|
+
},
|
|
1321
|
+
"PUT /feature-flags/{slug}/disable": {
|
|
1322
|
+
"sdkMethod": "disable_feature_flag",
|
|
1323
|
+
"service": "feature_flags"
|
|
1324
|
+
},
|
|
1325
|
+
"PUT /feature-flags/{slug}/enable": {
|
|
1326
|
+
"sdkMethod": "enable_feature_flag",
|
|
1327
|
+
"service": "feature_flags"
|
|
1328
|
+
},
|
|
1329
|
+
"POST /feature-flags/{slug}/targets/{resourceId}": {
|
|
1330
|
+
"sdkMethod": "add_flag_target",
|
|
1331
|
+
"service": "feature_flags"
|
|
1332
|
+
},
|
|
1333
|
+
"DELETE /feature-flags/{slug}/targets/{resourceId}": {
|
|
1334
|
+
"sdkMethod": "remove_flag_target",
|
|
1335
|
+
"service": "feature_flags"
|
|
1336
|
+
},
|
|
1337
|
+
"POST /organization_domains": {
|
|
1338
|
+
"sdkMethod": "create_organization_domain",
|
|
1339
|
+
"service": "organization_domains"
|
|
1340
|
+
},
|
|
1341
|
+
"GET /organization_domains/{id}": {
|
|
1342
|
+
"sdkMethod": "get_organization_domain",
|
|
1343
|
+
"service": "organization_domains"
|
|
1344
|
+
},
|
|
1345
|
+
"DELETE /organization_domains/{id}": {
|
|
1346
|
+
"sdkMethod": "delete_organization_domain",
|
|
1347
|
+
"service": "organization_domains"
|
|
1348
|
+
},
|
|
1349
|
+
"POST /organization_domains/{id}/verify": {
|
|
1350
|
+
"sdkMethod": "verify_organization_domain",
|
|
1351
|
+
"service": "organization_domains"
|
|
1352
|
+
},
|
|
1353
|
+
"GET /organizations": {
|
|
1354
|
+
"sdkMethod": "list_organizations",
|
|
1355
|
+
"service": "organizations"
|
|
1356
|
+
},
|
|
1357
|
+
"POST /organizations": {
|
|
1358
|
+
"sdkMethod": "create_organization",
|
|
1359
|
+
"service": "organizations"
|
|
1360
|
+
},
|
|
1361
|
+
"GET /organizations/external_id/{external_id}": {
|
|
1362
|
+
"sdkMethod": "get_organization_by_external_id",
|
|
1363
|
+
"service": "organizations"
|
|
1364
|
+
},
|
|
1365
|
+
"GET /organizations/{id}": {
|
|
1366
|
+
"sdkMethod": "get_organization",
|
|
1367
|
+
"service": "organizations"
|
|
1368
|
+
},
|
|
1369
|
+
"PUT /organizations/{id}": {
|
|
1370
|
+
"sdkMethod": "update_organization",
|
|
1371
|
+
"service": "organizations"
|
|
1372
|
+
},
|
|
1373
|
+
"DELETE /organizations/{id}": {
|
|
1374
|
+
"sdkMethod": "delete_organization",
|
|
1375
|
+
"service": "organizations"
|
|
1376
|
+
},
|
|
1377
|
+
"GET /organizations/{id}/audit_log_configuration": {
|
|
1378
|
+
"sdkMethod": "get_audit_log_configuration",
|
|
1379
|
+
"service": "organizations"
|
|
1380
|
+
},
|
|
1381
|
+
"GET /organizations/{id}/audit_logs_retention": {
|
|
1382
|
+
"sdkMethod": "get_organization_audit_logs_retention",
|
|
1383
|
+
"service": "audit_logs"
|
|
1384
|
+
},
|
|
1385
|
+
"PUT /organizations/{id}/audit_logs_retention": {
|
|
1386
|
+
"sdkMethod": "update_organization_audit_logs_retention",
|
|
1387
|
+
"service": "audit_logs"
|
|
1388
|
+
},
|
|
1389
|
+
"GET /organizations/{organizationId}/api_keys": {
|
|
1390
|
+
"sdkMethod": "list_organization_api_keys",
|
|
1391
|
+
"service": "api_keys"
|
|
1392
|
+
},
|
|
1393
|
+
"POST /organizations/{organizationId}/api_keys": {
|
|
1394
|
+
"sdkMethod": "create_organization_api_key",
|
|
1395
|
+
"service": "api_keys"
|
|
1396
|
+
},
|
|
1397
|
+
"GET /organizations/{organizationId}/feature-flags": {
|
|
1398
|
+
"sdkMethod": "list_organization_feature_flags",
|
|
1399
|
+
"service": "feature_flags"
|
|
1400
|
+
},
|
|
1401
|
+
"GET /organizations/{organizationId}/groups": {
|
|
1402
|
+
"sdkMethod": "list_organization_groups",
|
|
1403
|
+
"service": "groups"
|
|
1404
|
+
},
|
|
1405
|
+
"POST /organizations/{organizationId}/groups": {
|
|
1406
|
+
"sdkMethod": "create_organization_group",
|
|
1407
|
+
"service": "groups"
|
|
1408
|
+
},
|
|
1409
|
+
"GET /organizations/{organizationId}/groups/{groupId}": {
|
|
1410
|
+
"sdkMethod": "get_organization_group",
|
|
1411
|
+
"service": "groups"
|
|
1412
|
+
},
|
|
1413
|
+
"PATCH /organizations/{organizationId}/groups/{groupId}": {
|
|
1414
|
+
"sdkMethod": "update_organization_group",
|
|
1415
|
+
"service": "groups"
|
|
1416
|
+
},
|
|
1417
|
+
"DELETE /organizations/{organizationId}/groups/{groupId}": {
|
|
1418
|
+
"sdkMethod": "delete_organization_group",
|
|
1419
|
+
"service": "groups"
|
|
1420
|
+
},
|
|
1421
|
+
"GET /organizations/{organizationId}/groups/{groupId}/organization-memberships": {
|
|
1422
|
+
"sdkMethod": "list_group_organization_memberships",
|
|
1423
|
+
"service": "groups"
|
|
1424
|
+
},
|
|
1425
|
+
"POST /organizations/{organizationId}/groups/{groupId}/organization-memberships": {
|
|
1426
|
+
"sdkMethod": "create_group_organization_membership",
|
|
1427
|
+
"service": "groups"
|
|
1428
|
+
},
|
|
1429
|
+
"DELETE /organizations/{organizationId}/groups/{groupId}/organization-memberships/{omId}": {
|
|
1430
|
+
"sdkMethod": "delete_group_organization_membership",
|
|
1431
|
+
"service": "groups"
|
|
1432
|
+
},
|
|
1433
|
+
"POST /portal/generate_link": {
|
|
1434
|
+
"sdkMethod": "generate_link",
|
|
1435
|
+
"service": "admin_portal"
|
|
1436
|
+
},
|
|
1437
|
+
"POST /radar/attempts": {
|
|
1438
|
+
"sdkMethod": "create_attempt",
|
|
1439
|
+
"service": "radar"
|
|
1440
|
+
},
|
|
1441
|
+
"PUT /radar/attempts/{id}": {
|
|
1442
|
+
"sdkMethod": "update_attempt",
|
|
1443
|
+
"service": "radar"
|
|
1444
|
+
},
|
|
1445
|
+
"POST /radar/lists/{type}/{action}": {
|
|
1446
|
+
"sdkMethod": "add_list_entry",
|
|
1447
|
+
"service": "radar"
|
|
1448
|
+
},
|
|
1449
|
+
"DELETE /radar/lists/{type}/{action}": {
|
|
1450
|
+
"sdkMethod": "remove_list_entry",
|
|
1451
|
+
"service": "radar"
|
|
1452
|
+
},
|
|
1453
|
+
"GET /sso/authorize": {
|
|
1454
|
+
"sdkMethod": "get_authorization_url",
|
|
1455
|
+
"service": "sso"
|
|
1456
|
+
},
|
|
1457
|
+
"GET /sso/logout": {
|
|
1458
|
+
"sdkMethod": "get_logout_url",
|
|
1459
|
+
"service": "sso"
|
|
1460
|
+
},
|
|
1461
|
+
"POST /sso/logout/authorize": {
|
|
1462
|
+
"sdkMethod": "authorize_logout",
|
|
1463
|
+
"service": "sso"
|
|
1464
|
+
},
|
|
1465
|
+
"GET /sso/profile": {
|
|
1466
|
+
"sdkMethod": "get_profile",
|
|
1467
|
+
"service": "sso"
|
|
1468
|
+
},
|
|
1469
|
+
"POST /sso/token": {
|
|
1470
|
+
"sdkMethod": "get_profile_and_token",
|
|
1471
|
+
"service": "sso"
|
|
1472
|
+
},
|
|
1473
|
+
"GET /sso/jwks/{clientId}": {
|
|
1474
|
+
"sdkMethod": "get_jwks",
|
|
1475
|
+
"service": "user_management"
|
|
1476
|
+
},
|
|
1477
|
+
"POST /user_management/authenticate": {
|
|
1478
|
+
"sdkMethod": "create_authenticate",
|
|
1479
|
+
"service": "user_management"
|
|
1480
|
+
},
|
|
1481
|
+
"POST /user_management/authenticate#PasswordSessionAuthenticateRequest": {
|
|
1482
|
+
"sdkMethod": "authenticate_with_password",
|
|
1483
|
+
"service": "user_management"
|
|
1484
|
+
},
|
|
1485
|
+
"POST /user_management/authenticate#AuthorizationCodeSessionAuthenticateRequest": {
|
|
1486
|
+
"sdkMethod": "authenticate_with_code",
|
|
1487
|
+
"service": "user_management"
|
|
1488
|
+
},
|
|
1489
|
+
"POST /user_management/authenticate#RefreshTokenSessionAuthenticateRequest": {
|
|
1490
|
+
"sdkMethod": "authenticate_with_refresh_token",
|
|
1491
|
+
"service": "user_management"
|
|
1492
|
+
},
|
|
1493
|
+
"POST /user_management/authenticate#MagicAuthCodeSessionAuthenticateRequest": {
|
|
1494
|
+
"sdkMethod": "authenticate_with_magic_auth",
|
|
1495
|
+
"service": "user_management"
|
|
1496
|
+
},
|
|
1497
|
+
"POST /user_management/authenticate#EmailVerificationCodeSessionAuthenticateRequest": {
|
|
1498
|
+
"sdkMethod": "authenticate_with_email_verification",
|
|
1499
|
+
"service": "user_management"
|
|
1500
|
+
},
|
|
1501
|
+
"POST /user_management/authenticate#MFATotpSessionAuthenticateRequest": {
|
|
1502
|
+
"sdkMethod": "authenticate_with_totp",
|
|
1503
|
+
"service": "user_management"
|
|
1504
|
+
},
|
|
1505
|
+
"POST /user_management/authenticate#OrganizationSelectionSessionAuthenticateRequest": {
|
|
1506
|
+
"sdkMethod": "authenticate_with_organization_selection",
|
|
1507
|
+
"service": "user_management"
|
|
1508
|
+
},
|
|
1509
|
+
"POST /user_management/authenticate#DeviceCodeSessionAuthenticateRequest": {
|
|
1510
|
+
"sdkMethod": "authenticate_with_device_code",
|
|
1511
|
+
"service": "user_management"
|
|
1512
|
+
},
|
|
1513
|
+
"GET /user_management/authorize": {
|
|
1514
|
+
"sdkMethod": "get_authorization_url",
|
|
1515
|
+
"service": "user_management"
|
|
1516
|
+
},
|
|
1517
|
+
"POST /user_management/authorize/device": {
|
|
1518
|
+
"sdkMethod": "create_device",
|
|
1519
|
+
"service": "user_management"
|
|
1520
|
+
},
|
|
1521
|
+
"GET /user_management/sessions/logout": {
|
|
1522
|
+
"sdkMethod": "get_logout_url",
|
|
1523
|
+
"service": "user_management"
|
|
1524
|
+
},
|
|
1525
|
+
"POST /user_management/sessions/revoke": {
|
|
1526
|
+
"sdkMethod": "revoke_session",
|
|
1527
|
+
"service": "user_management"
|
|
1528
|
+
},
|
|
1529
|
+
"POST /user_management/cors_origins": {
|
|
1530
|
+
"sdkMethod": "create_cors_origin",
|
|
1531
|
+
"service": "user_management"
|
|
1532
|
+
},
|
|
1533
|
+
"GET /user_management/email_verification/{id}": {
|
|
1534
|
+
"sdkMethod": "get_email_verification",
|
|
1535
|
+
"service": "user_management"
|
|
1536
|
+
},
|
|
1537
|
+
"POST /user_management/password_reset": {
|
|
1538
|
+
"sdkMethod": "reset_password",
|
|
1539
|
+
"service": "user_management"
|
|
1540
|
+
},
|
|
1541
|
+
"POST /user_management/password_reset/confirm": {
|
|
1542
|
+
"sdkMethod": "confirm_password_reset",
|
|
1543
|
+
"service": "user_management"
|
|
1544
|
+
},
|
|
1545
|
+
"GET /user_management/password_reset/{id}": {
|
|
1546
|
+
"sdkMethod": "get_password_reset",
|
|
1547
|
+
"service": "user_management"
|
|
1548
|
+
},
|
|
1549
|
+
"GET /user_management/users": {
|
|
1550
|
+
"sdkMethod": "list_users",
|
|
1551
|
+
"service": "user_management"
|
|
1552
|
+
},
|
|
1553
|
+
"POST /user_management/users": {
|
|
1554
|
+
"sdkMethod": "create_user",
|
|
1555
|
+
"service": "user_management"
|
|
1556
|
+
},
|
|
1557
|
+
"GET /user_management/users/external_id/{external_id}": {
|
|
1558
|
+
"sdkMethod": "get_user_by_external_id",
|
|
1559
|
+
"service": "user_management"
|
|
1560
|
+
},
|
|
1561
|
+
"GET /user_management/users/{id}": {
|
|
1562
|
+
"sdkMethod": "get_user",
|
|
1563
|
+
"service": "user_management"
|
|
1564
|
+
},
|
|
1565
|
+
"PUT /user_management/users/{id}": {
|
|
1566
|
+
"sdkMethod": "update_user",
|
|
1567
|
+
"service": "user_management"
|
|
1568
|
+
},
|
|
1569
|
+
"DELETE /user_management/users/{id}": {
|
|
1570
|
+
"sdkMethod": "delete_user",
|
|
1571
|
+
"service": "user_management"
|
|
1572
|
+
},
|
|
1573
|
+
"POST /user_management/users/{id}/email_change/confirm": {
|
|
1574
|
+
"sdkMethod": "confirm_email_change",
|
|
1575
|
+
"service": "user_management"
|
|
1576
|
+
},
|
|
1577
|
+
"POST /user_management/users/{id}/email_change/send": {
|
|
1578
|
+
"sdkMethod": "send_email_change",
|
|
1579
|
+
"service": "user_management"
|
|
1580
|
+
},
|
|
1581
|
+
"POST /user_management/users/{id}/email_verification/confirm": {
|
|
1582
|
+
"sdkMethod": "verify_email",
|
|
1583
|
+
"service": "user_management"
|
|
1584
|
+
},
|
|
1585
|
+
"POST /user_management/users/{id}/email_verification/send": {
|
|
1586
|
+
"sdkMethod": "send_verification_email",
|
|
1587
|
+
"service": "user_management"
|
|
1588
|
+
},
|
|
1589
|
+
"GET /user_management/users/{id}/identities": {
|
|
1590
|
+
"sdkMethod": "get_user_identities",
|
|
1591
|
+
"service": "user_management"
|
|
1592
|
+
},
|
|
1593
|
+
"GET /user_management/users/{id}/sessions": {
|
|
1594
|
+
"sdkMethod": "list_sessions",
|
|
1595
|
+
"service": "user_management"
|
|
1596
|
+
},
|
|
1597
|
+
"GET /user_management/invitations": {
|
|
1598
|
+
"sdkMethod": "list_invitations",
|
|
1599
|
+
"service": "user_management"
|
|
1600
|
+
},
|
|
1601
|
+
"POST /user_management/invitations": {
|
|
1602
|
+
"sdkMethod": "send_invitation",
|
|
1603
|
+
"service": "user_management"
|
|
1604
|
+
},
|
|
1605
|
+
"GET /user_management/invitations/by_token/{token}": {
|
|
1606
|
+
"sdkMethod": "find_invitation_by_token",
|
|
1607
|
+
"service": "user_management"
|
|
1608
|
+
},
|
|
1609
|
+
"GET /user_management/invitations/{id}": {
|
|
1610
|
+
"sdkMethod": "get_invitation",
|
|
1611
|
+
"service": "user_management"
|
|
1612
|
+
},
|
|
1613
|
+
"POST /user_management/invitations/{id}/accept": {
|
|
1614
|
+
"sdkMethod": "accept_invitation",
|
|
1615
|
+
"service": "user_management"
|
|
1616
|
+
},
|
|
1617
|
+
"POST /user_management/invitations/{id}/resend": {
|
|
1618
|
+
"sdkMethod": "resend_invitation",
|
|
1619
|
+
"service": "user_management"
|
|
1620
|
+
},
|
|
1621
|
+
"POST /user_management/invitations/{id}/revoke": {
|
|
1622
|
+
"sdkMethod": "revoke_invitation",
|
|
1623
|
+
"service": "user_management"
|
|
1624
|
+
},
|
|
1625
|
+
"PUT /user_management/jwt_template": {
|
|
1626
|
+
"sdkMethod": "update_jwt_template",
|
|
1627
|
+
"service": "user_management"
|
|
1628
|
+
},
|
|
1629
|
+
"POST /user_management/magic_auth": {
|
|
1630
|
+
"sdkMethod": "create_magic_auth",
|
|
1631
|
+
"service": "user_management"
|
|
1632
|
+
},
|
|
1633
|
+
"GET /user_management/magic_auth/{id}": {
|
|
1634
|
+
"sdkMethod": "get_magic_auth",
|
|
1635
|
+
"service": "user_management"
|
|
1636
|
+
},
|
|
1637
|
+
"GET /user_management/organization_memberships": {
|
|
1638
|
+
"sdkMethod": "list_organization_memberships",
|
|
1639
|
+
"service": "user_management"
|
|
1640
|
+
},
|
|
1641
|
+
"POST /user_management/organization_memberships": {
|
|
1642
|
+
"sdkMethod": "create_organization_membership",
|
|
1643
|
+
"service": "user_management"
|
|
1644
|
+
},
|
|
1645
|
+
"GET /user_management/organization_memberships/{id}": {
|
|
1646
|
+
"sdkMethod": "get_organization_membership",
|
|
1647
|
+
"service": "user_management"
|
|
1648
|
+
},
|
|
1649
|
+
"PUT /user_management/organization_memberships/{id}": {
|
|
1650
|
+
"sdkMethod": "update_organization_membership",
|
|
1651
|
+
"service": "user_management"
|
|
1652
|
+
},
|
|
1653
|
+
"DELETE /user_management/organization_memberships/{id}": {
|
|
1654
|
+
"sdkMethod": "delete_organization_membership",
|
|
1655
|
+
"service": "user_management"
|
|
1656
|
+
},
|
|
1657
|
+
"PUT /user_management/organization_memberships/{id}/deactivate": {
|
|
1658
|
+
"sdkMethod": "deactivate_organization_membership",
|
|
1659
|
+
"service": "user_management"
|
|
1660
|
+
},
|
|
1661
|
+
"PUT /user_management/organization_memberships/{id}/reactivate": {
|
|
1662
|
+
"sdkMethod": "reactivate_organization_membership",
|
|
1663
|
+
"service": "user_management"
|
|
1664
|
+
},
|
|
1665
|
+
"GET /user_management/organization_memberships/{omId}/groups": {
|
|
1666
|
+
"sdkMethod": "list_organization_membership_groups",
|
|
1667
|
+
"service": "user_management_organization_membership_groups"
|
|
1668
|
+
},
|
|
1669
|
+
"POST /user_management/redirect_uris": {
|
|
1670
|
+
"sdkMethod": "create_redirect_uri",
|
|
1671
|
+
"service": "user_management"
|
|
1672
|
+
},
|
|
1673
|
+
"GET /user_management/users/{userId}/feature-flags": {
|
|
1674
|
+
"sdkMethod": "list_user_feature_flags",
|
|
1675
|
+
"service": "feature_flags"
|
|
1676
|
+
},
|
|
1677
|
+
"GET /user_management/users/{user_id}/authorized_applications": {
|
|
1678
|
+
"sdkMethod": "list_user_authorized_applications",
|
|
1679
|
+
"service": "user_management"
|
|
1680
|
+
},
|
|
1681
|
+
"DELETE /user_management/users/{user_id}/authorized_applications/{application_id}": {
|
|
1682
|
+
"sdkMethod": "delete_user_authorized_application",
|
|
1683
|
+
"service": "user_management"
|
|
1684
|
+
},
|
|
1685
|
+
"GET /user_management/users/{user_id}/connected_accounts/{slug}": {
|
|
1686
|
+
"sdkMethod": "get_user_connected_account",
|
|
1687
|
+
"service": "pipes"
|
|
1688
|
+
},
|
|
1689
|
+
"DELETE /user_management/users/{user_id}/connected_accounts/{slug}": {
|
|
1690
|
+
"sdkMethod": "delete_user_connected_account",
|
|
1691
|
+
"service": "pipes"
|
|
1692
|
+
},
|
|
1693
|
+
"GET /user_management/users/{user_id}/data_providers": {
|
|
1694
|
+
"sdkMethod": "list_user_data_providers",
|
|
1695
|
+
"service": "pipes"
|
|
1696
|
+
},
|
|
1697
|
+
"GET /user_management/users/{userlandUserId}/auth_factors": {
|
|
1698
|
+
"sdkMethod": "list_user_auth_factors",
|
|
1699
|
+
"service": "multi_factor_auth"
|
|
1700
|
+
},
|
|
1701
|
+
"POST /user_management/users/{userlandUserId}/auth_factors": {
|
|
1702
|
+
"sdkMethod": "create_user_auth_factor",
|
|
1703
|
+
"service": "multi_factor_auth"
|
|
1704
|
+
},
|
|
1705
|
+
"GET /webhook_endpoints": {
|
|
1706
|
+
"sdkMethod": "list_webhook_endpoints",
|
|
1707
|
+
"service": "webhooks"
|
|
1708
|
+
},
|
|
1709
|
+
"POST /webhook_endpoints": {
|
|
1710
|
+
"sdkMethod": "create_webhook_endpoint",
|
|
1711
|
+
"service": "webhooks"
|
|
1712
|
+
},
|
|
1713
|
+
"PATCH /webhook_endpoints/{id}": {
|
|
1714
|
+
"sdkMethod": "update_webhook_endpoint",
|
|
1715
|
+
"service": "webhooks"
|
|
1716
|
+
},
|
|
1717
|
+
"DELETE /webhook_endpoints/{id}": {
|
|
1718
|
+
"sdkMethod": "delete_webhook_endpoint",
|
|
1719
|
+
"service": "webhooks"
|
|
1720
|
+
},
|
|
1721
|
+
"POST /widgets/token": {
|
|
1722
|
+
"sdkMethod": "create_token",
|
|
1723
|
+
"service": "widgets"
|
|
1724
|
+
},
|
|
1725
|
+
"GET /audit_logs/actions": {
|
|
1726
|
+
"sdkMethod": "list_actions",
|
|
1727
|
+
"service": "audit_logs"
|
|
1728
|
+
},
|
|
1729
|
+
"GET /audit_logs/actions/{actionName}/schemas": {
|
|
1730
|
+
"sdkMethod": "list_action_schemas",
|
|
1731
|
+
"service": "audit_logs"
|
|
1732
|
+
},
|
|
1733
|
+
"POST /audit_logs/actions/{actionName}/schemas": {
|
|
1734
|
+
"sdkMethod": "create_schema",
|
|
1735
|
+
"service": "audit_logs"
|
|
1736
|
+
},
|
|
1737
|
+
"POST /audit_logs/events": {
|
|
1738
|
+
"sdkMethod": "create_event",
|
|
1739
|
+
"service": "audit_logs"
|
|
1740
|
+
},
|
|
1741
|
+
"POST /audit_logs/exports": {
|
|
1742
|
+
"sdkMethod": "create_export",
|
|
1743
|
+
"service": "audit_logs"
|
|
1744
|
+
},
|
|
1745
|
+
"GET /audit_logs/exports/{auditLogExportId}": {
|
|
1746
|
+
"sdkMethod": "get_export",
|
|
1747
|
+
"service": "audit_logs"
|
|
1748
|
+
}
|
|
1749
|
+
}
|
|
1015
1750
|
}
|