auth0 6.0.0.beta.4 → 6.0.0

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.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/.fern/metadata.json +1 -1
  3. data/.fern/replay.lock +7 -1
  4. data/.version +1 -1
  5. data/CHANGELOG.md +57 -0
  6. data/README.md +4 -1
  7. data/custom.gemspec.rb +1 -1
  8. data/examples/ruby-api/Gemfile.lock +3 -3
  9. data/lib/auth0/agents/client.rb +201 -0
  10. data/lib/auth0/agents/types/create_agent_request_content.rb +17 -0
  11. data/lib/auth0/agents/types/list_agents_request_parameters.rb +13 -0
  12. data/lib/auth0/agents/types/patch_agent_request_parameters.rb +15 -0
  13. data/lib/auth0/client.rb +5 -0
  14. data/lib/auth0/client_grants/client.rb +2 -0
  15. data/lib/auth0/client_grants/organizations/client.rb +2 -0
  16. data/lib/auth0/client_grants/organizations/types/list_client_grant_organizations_request_parameters.rb +2 -0
  17. data/lib/auth0/client_grants/types/list_client_grants_request_parameters.rb +2 -0
  18. data/lib/auth0/connections/client.rb +2 -0
  19. data/lib/auth0/connections/directory_provisioning/client.rb +76 -0
  20. data/lib/auth0/connections/directory_provisioning/types/add_synchronized_groups_request_content.rb +15 -0
  21. data/lib/auth0/connections/directory_provisioning/types/delete_synchronized_groups_request_content.rb +15 -0
  22. data/lib/auth0/connections/directory_provisioning/types/list_synchronized_groups_request_parameters.rb +2 -0
  23. data/lib/auth0/connections/types/list_connections_query_parameters.rb +2 -0
  24. data/lib/auth0/event_streams/deliveries/client.rb +27 -17
  25. data/lib/auth0/flows/executions/client.rb +2 -0
  26. data/lib/auth0/flows/executions/types/list_flow_executions_request_parameters.rb +2 -0
  27. data/lib/auth0/groups/client.rb +2 -0
  28. data/lib/auth0/groups/types/list_groups_request_parameters.rb +2 -0
  29. data/lib/auth0/mixins/token_management.rb +15 -11
  30. data/lib/auth0/organizations/client.rb +9 -0
  31. data/lib/auth0/organizations/clients/client.rb +223 -0
  32. data/lib/auth0/organizations/clients/types/create_organization_clients_request_content.rb +15 -0
  33. data/lib/auth0/organizations/clients/types/delete_organization_clients_request_content.rb +15 -0
  34. data/lib/auth0/organizations/clients/types/list_organization_clients_request_parameters.rb +17 -0
  35. data/lib/auth0/organizations/clients/types/update_organization_client_request_content.rb +17 -0
  36. data/lib/auth0/organizations/members/client.rb +5 -1
  37. data/lib/auth0/organizations/members/roles/client.rb +3 -0
  38. data/lib/auth0/organizations/members/types/list_organization_members_request_parameters.rb +2 -0
  39. data/lib/auth0/organizations/roles/client.rb +5 -0
  40. data/lib/auth0/organizations/roles/groups/client.rb +68 -0
  41. data/lib/auth0/organizations/roles/groups/types/list_organization_role_groups_request_parameters.rb +21 -0
  42. data/lib/auth0/organizations/roles/members/client.rb +6 -0
  43. data/lib/auth0/organizations/types/create_organization_request_content.rb +2 -0
  44. data/lib/auth0/organizations/types/list_organizations_request_parameters.rb +4 -0
  45. data/lib/auth0/organizations/types/update_organization_request_content.rb +2 -0
  46. data/lib/auth0/roles/client.rb +4 -0
  47. data/lib/auth0/roles/types/create_role_request_content.rb +4 -0
  48. data/lib/auth0/roles/types/list_roles_request_parameters.rb +4 -0
  49. data/lib/auth0/roles/users/client.rb +5 -0
  50. data/lib/auth0/roles/users/types/list_role_users_request_parameters.rb +2 -0
  51. data/lib/auth0/types/acul_context_enum.rb +1 -0
  52. data/lib/auth0/types/agent_metadata.rb +23 -0
  53. data/lib/auth0/types/agent_response_content.rb +19 -0
  54. data/lib/auth0/types/conflict_schema.rb +14 -0
  55. data/lib/auth0/types/conflict_schema_error.rb +11 -0
  56. data/lib/auth0/types/connection_connected_accounts_purpose.rb +2 -0
  57. data/lib/auth0/types/connection_connected_accounts_purpose_xaa.rb +2 -0
  58. data/lib/auth0/types/create_organization_client_request_item.rb +11 -0
  59. data/lib/auth0/types/create_organization_clients_response_content.rb +23 -0
  60. data/lib/auth0/types/create_organization_response_content.rb +4 -0
  61. data/lib/auth0/types/create_role_response_content.rb +4 -0
  62. data/lib/auth0/types/event_stream_cloud_event.rb +1 -1
  63. data/lib/auth0/types/event_stream_cloud_event_data.rb +23 -0
  64. data/lib/auth0/types/event_stream_delivery_attempt.rb +2 -0
  65. data/lib/auth0/types/get_organization_by_name_response_content.rb +4 -0
  66. data/lib/auth0/types/get_organization_client_response_content.rb +13 -0
  67. data/lib/auth0/types/get_organization_response_content.rb +4 -0
  68. data/lib/auth0/types/get_role_response_content.rb +4 -0
  69. data/lib/auth0/types/guardian_factor.rb +2 -0
  70. data/lib/auth0/types/guardian_factor_settings.rb +12 -0
  71. data/lib/auth0/types/list_agents_response_content.rb +11 -0
  72. data/lib/auth0/types/list_event_stream_deliveries_response_content.rb +11 -0
  73. data/lib/auth0/types/list_organization_clients_response_content.rb +11 -0
  74. data/lib/auth0/types/list_organization_role_groups_response_content.rb +12 -0
  75. data/lib/auth0/types/not_found_schema.rb +14 -0
  76. data/lib/auth0/types/not_found_schema_error.rb +11 -0
  77. data/lib/auth0/types/oauth_scope.rb +8 -0
  78. data/lib/auth0/types/organization.rb +4 -0
  79. data/lib/auth0/types/organization_client.rb +13 -0
  80. data/lib/auth0/types/organization_client_association.rb +11 -0
  81. data/lib/auth0/types/organization_client_metadata.rb +20 -0
  82. data/lib/auth0/types/organization_client_metadata_organization_usage_enum.rb +13 -0
  83. data/lib/auth0/types/role.rb +4 -0
  84. data/lib/auth0/types/role_group.rb +26 -0
  85. data/lib/auth0/types/role_type_enum.rb +12 -0
  86. data/lib/auth0/types/self_service_profile_sso_ticket_google_workspace_config.rb +2 -0
  87. data/lib/auth0/types/synchronized_group_payload.rb +6 -0
  88. data/lib/auth0/types/synchronized_group_selection_id.rb +9 -0
  89. data/lib/auth0/types/update_organization_client_response_content.rb +13 -0
  90. data/lib/auth0/types/update_organization_response_content.rb +4 -0
  91. data/lib/auth0/types/update_role_response_content.rb +4 -0
  92. data/lib/auth0/types/user_effective_permission_role_source_response_content.rb +4 -0
  93. data/lib/auth0/users/groups/client.rb +2 -0
  94. data/lib/auth0/users/groups/types/get_user_groups_request_parameters.rb +2 -0
  95. data/lib/auth0/users/permissions/client.rb +3 -0
  96. data/lib/auth0/users/refresh_token/client.rb +2 -0
  97. data/lib/auth0/users/refresh_token/types/list_refresh_tokens_request_parameters.rb +2 -0
  98. data/lib/auth0/users/roles/client.rb +3 -0
  99. data/lib/auth0/users/sessions/client.rb +2 -0
  100. data/lib/auth0/users/sessions/types/list_user_sessions_request_parameters.rb +2 -0
  101. data/lib/auth0/version.rb +1 -1
  102. data/lib/auth0.rb +38 -2
  103. data/v6_MIGRATION_GUIDE.md +1 -1
  104. data/wiremock/wiremock-mappings.json +592 -55
  105. metadata +46 -4
@@ -268,6 +268,185 @@
268
268
  }
269
269
  }
270
270
  },
271
+ {
272
+ "id": "e57d3d93-924c-454b-894e-3e0deab81c8a",
273
+ "name": "Get agents - default",
274
+ "request": {
275
+ "urlPathTemplate": "/agents",
276
+ "method": "GET",
277
+ "headers": {
278
+ "Authorization": {
279
+ "matches": "Bearer .+"
280
+ }
281
+ },
282
+ "queryParameters": {
283
+ "from": {
284
+ "equalTo": "from"
285
+ },
286
+ "take": {
287
+ "equalTo": "1"
288
+ }
289
+ }
290
+ },
291
+ "response": {
292
+ "status": 200,
293
+ "body": "{\n \"agents\": [\n {\n \"agent_id\": \"agent_id\",\n \"name\": \"name\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\",\n \"external_agent_id\": \"external_agent_id\",\n \"metadata\": {\n \"key\": \"value\"\n }\n }\n ],\n \"next\": \"next\"\n}",
294
+ "headers": {
295
+ "Content-Type": "application/json"
296
+ }
297
+ },
298
+ "uuid": "e57d3d93-924c-454b-894e-3e0deab81c8a",
299
+ "persistent": true,
300
+ "priority": 3,
301
+ "metadata": {
302
+ "mocklab": {
303
+ "created": {
304
+ "at": "2020-01-01T00:00:00.000Z",
305
+ "via": "SYSTEM"
306
+ }
307
+ }
308
+ },
309
+ "postServeActions": []
310
+ },
311
+ {
312
+ "id": "95ffdeb2-8e4d-45a8-b3e6-dfee451101bc",
313
+ "name": "Create an agent - default",
314
+ "request": {
315
+ "urlPathTemplate": "/agents",
316
+ "method": "POST",
317
+ "headers": {
318
+ "Authorization": {
319
+ "matches": "Bearer .+"
320
+ }
321
+ }
322
+ },
323
+ "response": {
324
+ "status": 201,
325
+ "body": "{\n \"agent_id\": \"agent_id\",\n \"name\": \"name\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\",\n \"external_agent_id\": \"external_agent_id\",\n \"metadata\": {\n \"key\": \"value\"\n }\n}",
326
+ "headers": {
327
+ "Content-Type": "application/json"
328
+ }
329
+ },
330
+ "uuid": "95ffdeb2-8e4d-45a8-b3e6-dfee451101bc",
331
+ "persistent": true,
332
+ "priority": 3,
333
+ "metadata": {
334
+ "mocklab": {
335
+ "created": {
336
+ "at": "2020-01-01T00:00:00.000Z",
337
+ "via": "SYSTEM"
338
+ }
339
+ }
340
+ }
341
+ },
342
+ {
343
+ "id": "e6eacf15-64ae-4475-9825-02e2304fc092",
344
+ "name": "Get an agent - default",
345
+ "request": {
346
+ "urlPathTemplate": "/agents/{id}",
347
+ "method": "GET",
348
+ "headers": {
349
+ "Authorization": {
350
+ "matches": "Bearer .+"
351
+ }
352
+ },
353
+ "pathParameters": {
354
+ "id": {
355
+ "equalTo": "id"
356
+ }
357
+ }
358
+ },
359
+ "response": {
360
+ "status": 200,
361
+ "body": "{\n \"agent_id\": \"agent_id\",\n \"name\": \"name\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\",\n \"external_agent_id\": \"external_agent_id\",\n \"metadata\": {\n \"key\": \"value\"\n }\n}",
362
+ "headers": {
363
+ "Content-Type": "application/json"
364
+ }
365
+ },
366
+ "uuid": "e6eacf15-64ae-4475-9825-02e2304fc092",
367
+ "persistent": true,
368
+ "priority": 3,
369
+ "metadata": {
370
+ "mocklab": {
371
+ "created": {
372
+ "at": "2020-01-01T00:00:00.000Z",
373
+ "via": "SYSTEM"
374
+ }
375
+ }
376
+ }
377
+ },
378
+ {
379
+ "id": "7077fe4c-7880-4955-9e36-8e52330fb15a",
380
+ "name": "Delete an agent - default",
381
+ "request": {
382
+ "urlPathTemplate": "/agents/{id}",
383
+ "method": "DELETE",
384
+ "headers": {
385
+ "Authorization": {
386
+ "matches": "Bearer .+"
387
+ }
388
+ },
389
+ "pathParameters": {
390
+ "id": {
391
+ "equalTo": "id"
392
+ }
393
+ }
394
+ },
395
+ "response": {
396
+ "status": 200,
397
+ "body": "\"\"",
398
+ "headers": {
399
+ "Content-Type": "application/json"
400
+ }
401
+ },
402
+ "uuid": "7077fe4c-7880-4955-9e36-8e52330fb15a",
403
+ "persistent": true,
404
+ "priority": 3,
405
+ "metadata": {
406
+ "mocklab": {
407
+ "created": {
408
+ "at": "2020-01-01T00:00:00.000Z",
409
+ "via": "SYSTEM"
410
+ }
411
+ }
412
+ }
413
+ },
414
+ {
415
+ "id": "b357e80d-57fc-4f4a-becb-184125842929",
416
+ "name": "Update an agent - default",
417
+ "request": {
418
+ "urlPathTemplate": "/agents/{id}",
419
+ "method": "PATCH",
420
+ "headers": {
421
+ "Authorization": {
422
+ "matches": "Bearer .+"
423
+ }
424
+ },
425
+ "pathParameters": {
426
+ "id": {
427
+ "equalTo": "id"
428
+ }
429
+ }
430
+ },
431
+ "response": {
432
+ "status": 200,
433
+ "body": "{\n \"agent_id\": \"agent_id\",\n \"name\": \"name\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\",\n \"external_agent_id\": \"external_agent_id\",\n \"metadata\": {\n \"key\": \"value\"\n }\n}",
434
+ "headers": {
435
+ "Content-Type": "application/json"
436
+ }
437
+ },
438
+ "uuid": "b357e80d-57fc-4f4a-becb-184125842929",
439
+ "persistent": true,
440
+ "priority": 3,
441
+ "metadata": {
442
+ "mocklab": {
443
+ "created": {
444
+ "at": "2020-01-01T00:00:00.000Z",
445
+ "via": "SYSTEM"
446
+ }
447
+ }
448
+ }
449
+ },
271
450
  {
272
451
  "id": "0f76d290-6b70-4f62-abc8-3760917fe787",
273
452
  "name": "Get branding settings - default",
@@ -343,6 +522,9 @@
343
522
  }
344
523
  },
345
524
  "queryParameters": {
525
+ "include_totals": {
526
+ "equalTo": "true"
527
+ },
346
528
  "from": {
347
529
  "equalTo": "from"
348
530
  },
@@ -1093,6 +1275,9 @@
1093
1275
  }
1094
1276
  },
1095
1277
  "queryParameters": {
1278
+ "include_totals": {
1279
+ "equalTo": "true"
1280
+ },
1096
1281
  "from": {
1097
1282
  "equalTo": "from"
1098
1283
  },
@@ -1151,7 +1336,7 @@
1151
1336
  },
1152
1337
  "response": {
1153
1338
  "status": 201,
1154
- "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n}",
1339
+ "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true,\n \"allow_missing_user_id\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n}",
1155
1340
  "headers": {
1156
1341
  "Content-Type": "application/json"
1157
1342
  }
@@ -1195,7 +1380,7 @@
1195
1380
  },
1196
1381
  "response": {
1197
1382
  "status": 200,
1198
- "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n}",
1383
+ "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true,\n \"allow_missing_user_id\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n}",
1199
1384
  "headers": {
1200
1385
  "Content-Type": "application/json"
1201
1386
  }
@@ -1267,7 +1452,7 @@
1267
1452
  },
1268
1453
  "response": {
1269
1454
  "status": 200,
1270
- "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n}",
1455
+ "body": "{\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"options\": {\n \"key\": \"value\"\n },\n \"id\": \"id\",\n \"strategy\": \"strategy\",\n \"realms\": [\n \"realms\"\n ],\n \"enabled_clients\": [\n \"enabled_clients\"\n ],\n \"is_domain_connection\": true,\n \"show_as_button\": true,\n \"metadata\": {\n \"key\": \"value\"\n },\n \"authentication\": {\n \"active\": true\n },\n \"connected_accounts\": {\n \"active\": true,\n \"cross_app_access\": true,\n \"allow_missing_user_id\": true\n },\n \"cross_app_access_requesting_app\": {\n \"active\": true\n },\n \"cross_app_access_resource_app\": {\n \"status\": \"enabled\"\n }\n}",
1271
1456
  "headers": {
1272
1457
  "Content-Type": "application/json"
1273
1458
  }
@@ -2102,7 +2287,7 @@
2102
2287
  },
2103
2288
  "response": {
2104
2289
  "status": 202,
2105
- "body": "{\n \"id\": \"id\",\n \"event_stream_id\": \"event_stream_id\",\n \"status\": \"failed\",\n \"event_type\": \"connection.created\",\n \"attempts\": [\n {\n \"status\": \"failed\",\n \"timestamp\": \"2024-01-15T09:30:00Z\",\n \"error_message\": \"error_message\"\n }\n ],\n \"event\": {\n \"id\": \"id\",\n \"source\": \"source\",\n \"specversion\": \"specversion\",\n \"type\": \"type\",\n \"time\": \"2024-01-15T09:30:00Z\",\n \"data\": \"data\"\n }\n}",
2290
+ "body": "{\n \"id\": \"id\",\n \"event_stream_id\": \"event_stream_id\",\n \"status\": \"failed\",\n \"event_type\": \"connection.created\",\n \"attempts\": [\n {\n \"status\": \"failed\",\n \"timestamp\": \"2024-01-15T09:30:00Z\",\n \"error_message\": \"error_message\",\n \"duration\": 1.1\n }\n ],\n \"event\": {\n \"id\": \"id\",\n \"source\": \"source\",\n \"specversion\": \"specversion\",\n \"type\": \"type\",\n \"time\": \"2024-01-15T09:30:00Z\",\n \"data\": {\n \"key\": \"value\"\n }\n }\n}",
2106
2291
  "headers": {
2107
2292
  "Content-Type": "application/json"
2108
2293
  }
@@ -2719,6 +2904,9 @@
2719
2904
  "include_fields": {
2720
2905
  "equalTo": "true"
2721
2906
  },
2907
+ "include_totals": {
2908
+ "equalTo": "true"
2909
+ },
2722
2910
  "from": {
2723
2911
  "equalTo": "from"
2724
2912
  },
@@ -3543,6 +3731,9 @@
3543
3731
  }
3544
3732
  },
3545
3733
  "queryParameters": {
3734
+ "include_totals": {
3735
+ "equalTo": "true"
3736
+ },
3546
3737
  "from": {
3547
3738
  "equalTo": "from"
3548
3739
  },
@@ -3551,12 +3742,15 @@
3551
3742
  },
3552
3743
  "sort": {
3553
3744
  "equalTo": "sort"
3745
+ },
3746
+ "include_client_association_for": {
3747
+ "equalTo": "include_client_association_for"
3554
3748
  }
3555
3749
  }
3556
3750
  },
3557
3751
  "response": {
3558
3752
  "status": 200,
3559
- "body": "{\n \"next\": \"next\",\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\"\n }\n ]\n}",
3753
+ "body": "{\n \"next\": \"next\",\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true\n }\n ]\n}",
3560
3754
  "headers": {
3561
3755
  "Content-Type": "application/json"
3562
3756
  }
@@ -3588,7 +3782,7 @@
3588
3782
  },
3589
3783
  "response": {
3590
3784
  "status": 201,
3591
- "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\",\n \"enabled_connections\": [\n {\n \"connection_id\": \"connection_id\",\n \"assign_membership_on_login\": true,\n \"show_as_button\": true,\n \"is_signup_enabled\": true\n }\n ]\n}",
3785
+ "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true,\n \"client\": {\n \"use_for_member_access\": true\n },\n \"enabled_connections\": [\n {\n \"connection_id\": \"connection_id\",\n \"assign_membership_on_login\": true,\n \"show_as_button\": true,\n \"is_signup_enabled\": true\n }\n ]\n}",
3592
3786
  "headers": {
3593
3787
  "Content-Type": "application/json"
3594
3788
  }
@@ -3624,7 +3818,7 @@
3624
3818
  },
3625
3819
  "response": {
3626
3820
  "status": 200,
3627
- "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\"\n}",
3821
+ "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true,\n \"client\": {\n \"use_for_member_access\": true\n }\n}",
3628
3822
  "headers": {
3629
3823
  "Content-Type": "application/json"
3630
3824
  }
@@ -3660,7 +3854,7 @@
3660
3854
  },
3661
3855
  "response": {
3662
3856
  "status": 200,
3663
- "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\"\n}",
3857
+ "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true,\n \"client\": {\n \"use_for_member_access\": true\n }\n}",
3664
3858
  "headers": {
3665
3859
  "Content-Type": "application/json"
3666
3860
  }
@@ -3732,7 +3926,7 @@
3732
3926
  },
3733
3927
  "response": {
3734
3928
  "status": 200,
3735
- "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\"\n}",
3929
+ "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"branding\": {\n \"logo_url\": \"logo_url\",\n \"colors\": {\n \"primary\": \"primary\",\n \"page_background\": \"page_background\"\n }\n },\n \"metadata\": {\n \"key\": \"value\"\n },\n \"token_quota\": {\n \"client_credentials\": {\n \"enforce\": true,\n \"per_day\": 1,\n \"per_hour\": 1\n }\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true,\n \"client\": {\n \"use_for_member_access\": true\n }\n}",
3736
3930
  "headers": {
3737
3931
  "Content-Type": "application/json"
3738
3932
  }
@@ -4411,12 +4605,18 @@
4411
4605
  },
4412
4606
  "name_filter": {
4413
4607
  "equalTo": "name_filter"
4608
+ },
4609
+ "type": {
4610
+ "equalTo": "tenant"
4611
+ },
4612
+ "owner_id": {
4613
+ "equalTo": "owner_id"
4414
4614
  }
4415
4615
  }
4416
4616
  },
4417
4617
  "response": {
4418
4618
  "status": 200,
4419
- "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n }\n ]\n}",
4619
+ "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n }\n ]\n}",
4420
4620
  "headers": {
4421
4621
  "Content-Type": "application/json"
4422
4622
  }
@@ -4448,7 +4648,7 @@
4448
4648
  },
4449
4649
  "response": {
4450
4650
  "status": 200,
4451
- "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n}",
4651
+ "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n}",
4452
4652
  "headers": {
4453
4653
  "Content-Type": "application/json"
4454
4654
  }
@@ -4484,7 +4684,7 @@
4484
4684
  },
4485
4685
  "response": {
4486
4686
  "status": 200,
4487
- "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n}",
4687
+ "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n}",
4488
4688
  "headers": {
4489
4689
  "Content-Type": "application/json"
4490
4690
  }
@@ -4556,7 +4756,7 @@
4556
4756
  },
4557
4757
  "response": {
4558
4758
  "status": 200,
4559
- "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n}",
4759
+ "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n}",
4560
4760
  "headers": {
4561
4761
  "Content-Type": "application/json"
4562
4762
  }
@@ -8144,6 +8344,9 @@
8144
8344
  }
8145
8345
  },
8146
8346
  "queryParameters": {
8347
+ "include_totals": {
8348
+ "equalTo": "true"
8349
+ },
8147
8350
  "from": {
8148
8351
  "equalTo": "from"
8149
8352
  },
@@ -8154,7 +8357,7 @@
8154
8357
  },
8155
8358
  "response": {
8156
8359
  "status": 200,
8157
- "body": "{\n \"next\": \"next\",\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\"\n }\n ]\n}",
8360
+ "body": "{\n \"next\": \"next\",\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true\n }\n ]\n}",
8158
8361
  "headers": {
8159
8362
  "Content-Type": "application/json"
8160
8363
  }
@@ -8659,12 +8862,15 @@
8659
8862
  },
8660
8863
  "take": {
8661
8864
  "equalTo": "1"
8865
+ },
8866
+ "q": {
8867
+ "equalTo": "q"
8662
8868
  }
8663
8869
  }
8664
8870
  },
8665
8871
  "response": {
8666
8872
  "status": 200,
8667
- "body": "{\n \"groups\": [\n {\n \"id\": \"id\"\n }\n ],\n \"next\": \"next\"\n}",
8873
+ "body": "{\n \"groups\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"email\": \"email\",\n \"direct_members_count\": 1\n }\n ],\n \"next\": \"next\"\n}",
8668
8874
  "headers": {
8669
8875
  "Content-Type": "application/json"
8670
8876
  }
@@ -8681,6 +8887,42 @@
8681
8887
  }
8682
8888
  }
8683
8889
  },
8890
+ {
8891
+ "id": "5bbdfb31-4781-467f-8fba-9b4896124cb2",
8892
+ "name": "Add synchronized group selections to a directory provisioning configuration - default",
8893
+ "request": {
8894
+ "urlPathTemplate": "/connections/{id}/directory-provisioning/synchronized-groups",
8895
+ "method": "POST",
8896
+ "headers": {
8897
+ "Authorization": {
8898
+ "matches": "Bearer .+"
8899
+ }
8900
+ },
8901
+ "pathParameters": {
8902
+ "id": {
8903
+ "equalTo": "id"
8904
+ }
8905
+ }
8906
+ },
8907
+ "response": {
8908
+ "status": 200,
8909
+ "body": "\"\"",
8910
+ "headers": {
8911
+ "Content-Type": "application/json"
8912
+ }
8913
+ },
8914
+ "uuid": "5bbdfb31-4781-467f-8fba-9b4896124cb2",
8915
+ "persistent": true,
8916
+ "priority": 3,
8917
+ "metadata": {
8918
+ "mocklab": {
8919
+ "created": {
8920
+ "at": "2020-01-01T00:00:00.000Z",
8921
+ "via": "SYSTEM"
8922
+ }
8923
+ }
8924
+ }
8925
+ },
8684
8926
  {
8685
8927
  "id": "3862e103-ed23-45b1-9543-8c83720a6c9c",
8686
8928
  "name": "Create or replace synchronized group selections for a directory provisioning configuration - default",
@@ -8717,6 +8959,42 @@
8717
8959
  }
8718
8960
  }
8719
8961
  },
8962
+ {
8963
+ "id": "e0e41a59-3e51-4a64-b4c9-8bfae41b828f",
8964
+ "name": "Delete synchronized group selections for a directory provisioning configuration - default",
8965
+ "request": {
8966
+ "urlPathTemplate": "/connections/{id}/directory-provisioning/synchronized-groups",
8967
+ "method": "DELETE",
8968
+ "headers": {
8969
+ "Authorization": {
8970
+ "matches": "Bearer .+"
8971
+ }
8972
+ },
8973
+ "pathParameters": {
8974
+ "id": {
8975
+ "equalTo": "id"
8976
+ }
8977
+ }
8978
+ },
8979
+ "response": {
8980
+ "status": 200,
8981
+ "body": "\"\"",
8982
+ "headers": {
8983
+ "Content-Type": "application/json"
8984
+ }
8985
+ },
8986
+ "uuid": "e0e41a59-3e51-4a64-b4c9-8bfae41b828f",
8987
+ "persistent": true,
8988
+ "priority": 3,
8989
+ "metadata": {
8990
+ "mocklab": {
8991
+ "created": {
8992
+ "at": "2020-01-01T00:00:00.000Z",
8993
+ "via": "SYSTEM"
8994
+ }
8995
+ }
8996
+ }
8997
+ },
8720
8998
  {
8721
8999
  "id": "9821e94c-1529-464c-911e-9b351dbc15bd",
8722
9000
  "name": "Get a list of SCIM configurations - default",
@@ -9485,7 +9763,7 @@
9485
9763
  },
9486
9764
  "response": {
9487
9765
  "status": 200,
9488
- "body": "[\n {\n \"id\": \"id\",\n \"event_stream_id\": \"event_stream_id\",\n \"status\": \"failed\",\n \"event_type\": \"connection.created\",\n \"attempts\": [\n {\n \"status\": \"failed\",\n \"timestamp\": \"2024-01-15T09:30:00Z\"\n }\n ],\n \"event\": {\n \"id\": \"id\",\n \"source\": \"source\",\n \"specversion\": \"specversion\",\n \"type\": \"type\",\n \"time\": \"2024-01-15T09:30:00Z\",\n \"data\": \"data\"\n }\n }\n]",
9766
+ "body": "{\n \"deliveries\": [\n {\n \"id\": \"id\",\n \"event_stream_id\": \"event_stream_id\",\n \"status\": \"failed\",\n \"event_type\": \"connection.created\",\n \"attempts\": [\n {\n \"status\": \"failed\",\n \"timestamp\": \"2024-01-15T09:30:00Z\"\n }\n ]\n }\n ],\n \"next\": \"next\"\n}",
9489
9767
  "headers": {
9490
9768
  "Content-Type": "application/json"
9491
9769
  }
@@ -9524,7 +9802,7 @@
9524
9802
  },
9525
9803
  "response": {
9526
9804
  "status": 200,
9527
- "body": "{\n \"id\": \"id\",\n \"event_stream_id\": \"event_stream_id\",\n \"status\": \"failed\",\n \"event_type\": \"connection.created\",\n \"attempts\": [\n {\n \"status\": \"failed\",\n \"timestamp\": \"2024-01-15T09:30:00Z\",\n \"error_message\": \"error_message\"\n }\n ],\n \"event\": {\n \"id\": \"id\",\n \"source\": \"source\",\n \"specversion\": \"specversion\",\n \"type\": \"type\",\n \"time\": \"2024-01-15T09:30:00Z\",\n \"data\": \"data\"\n }\n}",
9805
+ "body": "{\n \"id\": \"id\",\n \"event_stream_id\": \"event_stream_id\",\n \"status\": \"failed\",\n \"event_type\": \"connection.created\",\n \"attempts\": [\n {\n \"status\": \"failed\",\n \"timestamp\": \"2024-01-15T09:30:00Z\",\n \"error_message\": \"error_message\",\n \"duration\": 1.1\n }\n ],\n \"event\": {\n \"id\": \"id\",\n \"source\": \"source\",\n \"specversion\": \"specversion\",\n \"type\": \"type\",\n \"time\": \"2024-01-15T09:30:00Z\",\n \"data\": {\n \"key\": \"value\"\n }\n }\n}",
9528
9806
  "headers": {
9529
9807
  "Content-Type": "application/json"
9530
9808
  }
@@ -9633,6 +9911,9 @@
9633
9911
  }
9634
9912
  },
9635
9913
  "queryParameters": {
9914
+ "include_totals": {
9915
+ "equalTo": "true"
9916
+ },
9636
9917
  "from": {
9637
9918
  "equalTo": "from"
9638
9919
  },
@@ -10006,7 +10287,7 @@
10006
10287
  },
10007
10288
  "response": {
10008
10289
  "status": 200,
10009
- "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n }\n ],\n \"next\": \"next\"\n}",
10290
+ "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n }\n ],\n \"next\": \"next\"\n}",
10010
10291
  "headers": {
10011
10292
  "Content-Type": "application/json"
10012
10293
  }
@@ -10212,7 +10493,7 @@
10212
10493
  },
10213
10494
  "response": {
10214
10495
  "status": 200,
10215
- "body": "[\n {\n \"enabled\": true,\n \"trial_expired\": true,\n \"name\": \"push-notification\"\n }\n]",
10496
+ "body": "[\n {\n \"enabled\": true,\n \"trial_expired\": true,\n \"name\": \"push-notification\",\n \"settings\": {\n \"otp_length\": 1,\n \"otp_expiration_time\": 1\n }\n }\n]",
10216
10497
  "headers": {
10217
10498
  "Content-Type": "application/json"
10218
10499
  }
@@ -12125,6 +12406,200 @@
12125
12406
  }
12126
12407
  }
12127
12408
  },
12409
+ {
12410
+ "id": "a3c9ba95-a693-4d69-a1b3-1aa9120eb072",
12411
+ "name": "List organization client associations - default",
12412
+ "request": {
12413
+ "urlPathTemplate": "/organizations/{id}/clients",
12414
+ "method": "GET",
12415
+ "headers": {
12416
+ "Authorization": {
12417
+ "matches": "Bearer .+"
12418
+ }
12419
+ },
12420
+ "pathParameters": {
12421
+ "id": {
12422
+ "equalTo": "id"
12423
+ }
12424
+ },
12425
+ "queryParameters": {
12426
+ "from": {
12427
+ "equalTo": "from"
12428
+ },
12429
+ "take": {
12430
+ "equalTo": "1"
12431
+ }
12432
+ }
12433
+ },
12434
+ "response": {
12435
+ "status": 200,
12436
+ "body": "{\n \"clients\": [\n {\n \"client_id\": \"client_id\",\n \"use_for_member_access\": true,\n \"client\": {}\n }\n ],\n \"next\": \"next\"\n}",
12437
+ "headers": {
12438
+ "Content-Type": "application/json"
12439
+ }
12440
+ },
12441
+ "uuid": "a3c9ba95-a693-4d69-a1b3-1aa9120eb072",
12442
+ "persistent": true,
12443
+ "priority": 3,
12444
+ "metadata": {
12445
+ "mocklab": {
12446
+ "created": {
12447
+ "at": "2020-01-01T00:00:00.000Z",
12448
+ "via": "SYSTEM"
12449
+ }
12450
+ }
12451
+ }
12452
+ },
12453
+ {
12454
+ "id": "2fa25415-ea73-486d-a4db-dc430b35eb0b",
12455
+ "name": "Associate clients with an organization - default",
12456
+ "request": {
12457
+ "urlPathTemplate": "/organizations/{id}/clients",
12458
+ "method": "POST",
12459
+ "headers": {
12460
+ "Authorization": {
12461
+ "matches": "Bearer .+"
12462
+ }
12463
+ },
12464
+ "pathParameters": {
12465
+ "id": {
12466
+ "equalTo": "id"
12467
+ }
12468
+ }
12469
+ },
12470
+ "response": {
12471
+ "status": 201,
12472
+ "body": "[\n {\n \"client_id\": \"client_id\",\n \"use_for_member_access\": true,\n \"client\": {\n \"name\": \"name\",\n \"app_type\": \"app_type\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"grant_types\": [\n \"grant_types\"\n ],\n \"organization_usage\": \"deny\"\n }\n }\n]",
12473
+ "headers": {
12474
+ "Content-Type": "application/json"
12475
+ }
12476
+ },
12477
+ "uuid": "2fa25415-ea73-486d-a4db-dc430b35eb0b",
12478
+ "persistent": true,
12479
+ "priority": 3,
12480
+ "metadata": {
12481
+ "mocklab": {
12482
+ "created": {
12483
+ "at": "2020-01-01T00:00:00.000Z",
12484
+ "via": "SYSTEM"
12485
+ }
12486
+ }
12487
+ }
12488
+ },
12489
+ {
12490
+ "id": "20855d1e-636b-4663-bac9-875b3eb0d7b3",
12491
+ "name": "Remove client associations from an organization - default",
12492
+ "request": {
12493
+ "urlPathTemplate": "/organizations/{id}/clients",
12494
+ "method": "DELETE",
12495
+ "headers": {
12496
+ "Authorization": {
12497
+ "matches": "Bearer .+"
12498
+ }
12499
+ },
12500
+ "pathParameters": {
12501
+ "id": {
12502
+ "equalTo": "id"
12503
+ }
12504
+ }
12505
+ },
12506
+ "response": {
12507
+ "status": 200,
12508
+ "body": "\"\"",
12509
+ "headers": {
12510
+ "Content-Type": "application/json"
12511
+ }
12512
+ },
12513
+ "uuid": "20855d1e-636b-4663-bac9-875b3eb0d7b3",
12514
+ "persistent": true,
12515
+ "priority": 3,
12516
+ "metadata": {
12517
+ "mocklab": {
12518
+ "created": {
12519
+ "at": "2020-01-01T00:00:00.000Z",
12520
+ "via": "SYSTEM"
12521
+ }
12522
+ }
12523
+ }
12524
+ },
12525
+ {
12526
+ "id": "87f91e02-b7a6-470d-9913-43e936377815",
12527
+ "name": "Get an organization client association - default",
12528
+ "request": {
12529
+ "urlPathTemplate": "/organizations/{id}/clients/{client_id}",
12530
+ "method": "GET",
12531
+ "headers": {
12532
+ "Authorization": {
12533
+ "matches": "Bearer .+"
12534
+ }
12535
+ },
12536
+ "pathParameters": {
12537
+ "id": {
12538
+ "equalTo": "id"
12539
+ },
12540
+ "client_id": {
12541
+ "equalTo": "client_id"
12542
+ }
12543
+ }
12544
+ },
12545
+ "response": {
12546
+ "status": 200,
12547
+ "body": "{\n \"client_id\": \"client_id\",\n \"use_for_member_access\": true,\n \"client\": {\n \"name\": \"name\",\n \"app_type\": \"app_type\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"grant_types\": [\n \"grant_types\"\n ],\n \"organization_usage\": \"deny\"\n }\n}",
12548
+ "headers": {
12549
+ "Content-Type": "application/json"
12550
+ }
12551
+ },
12552
+ "uuid": "87f91e02-b7a6-470d-9913-43e936377815",
12553
+ "persistent": true,
12554
+ "priority": 3,
12555
+ "metadata": {
12556
+ "mocklab": {
12557
+ "created": {
12558
+ "at": "2020-01-01T00:00:00.000Z",
12559
+ "via": "SYSTEM"
12560
+ }
12561
+ }
12562
+ }
12563
+ },
12564
+ {
12565
+ "id": "da35509c-6faa-46b7-b7d9-809febc746b9",
12566
+ "name": "Update an organization client association - default",
12567
+ "request": {
12568
+ "urlPathTemplate": "/organizations/{id}/clients/{client_id}",
12569
+ "method": "PATCH",
12570
+ "headers": {
12571
+ "Authorization": {
12572
+ "matches": "Bearer .+"
12573
+ }
12574
+ },
12575
+ "pathParameters": {
12576
+ "id": {
12577
+ "equalTo": "id"
12578
+ },
12579
+ "client_id": {
12580
+ "equalTo": "client_id"
12581
+ }
12582
+ }
12583
+ },
12584
+ "response": {
12585
+ "status": 200,
12586
+ "body": "{\n \"client_id\": \"client_id\",\n \"use_for_member_access\": true,\n \"client\": {\n \"name\": \"name\",\n \"app_type\": \"app_type\",\n \"logo_uri\": \"logo_uri\",\n \"is_first_party\": true,\n \"grant_types\": [\n \"grant_types\"\n ],\n \"organization_usage\": \"deny\"\n }\n}",
12587
+ "headers": {
12588
+ "Content-Type": "application/json"
12589
+ }
12590
+ },
12591
+ "uuid": "da35509c-6faa-46b7-b7d9-809febc746b9",
12592
+ "persistent": true,
12593
+ "priority": 3,
12594
+ "metadata": {
12595
+ "mocklab": {
12596
+ "created": {
12597
+ "at": "2020-01-01T00:00:00.000Z",
12598
+ "via": "SYSTEM"
12599
+ }
12600
+ }
12601
+ }
12602
+ },
12128
12603
  {
12129
12604
  "id": "4c65b7b7-43a0-4437-b96f-7f47fdad6550",
12130
12605
  "name": "Get connections associated with an organization - default",
@@ -12176,8 +12651,8 @@
12176
12651
  }
12177
12652
  },
12178
12653
  {
12179
- "id": "de944d33-99f5-481d-9810-4aa2473950cc",
12180
- "name": "Adds a connection to an organization - default",
12654
+ "id": "1d212ed4-03d7-4aac-a774-8ae99461b148",
12655
+ "name": "Add a connection to an organization - default",
12181
12656
  "request": {
12182
12657
  "urlPathTemplate": "/organizations/{id}/connections",
12183
12658
  "method": "POST",
@@ -12199,7 +12674,7 @@
12199
12674
  "Content-Type": "application/json"
12200
12675
  }
12201
12676
  },
12202
- "uuid": "de944d33-99f5-481d-9810-4aa2473950cc",
12677
+ "uuid": "1d212ed4-03d7-4aac-a774-8ae99461b148",
12203
12678
  "persistent": true,
12204
12679
  "priority": 3,
12205
12680
  "metadata": {
@@ -12959,6 +13434,9 @@
12959
13434
  }
12960
13435
  },
12961
13436
  "queryParameters": {
13437
+ "include_totals": {
13438
+ "equalTo": "true"
13439
+ },
12962
13440
  "from": {
12963
13441
  "equalTo": "from"
12964
13442
  },
@@ -13065,8 +13543,8 @@
13065
13543
  }
13066
13544
  },
13067
13545
  {
13068
- "id": "c4da691c-ffe9-48de-9227-f8ce48855cda",
13069
- "name": "Lists the groups that are assigned to the organization. - default",
13546
+ "id": "6d9e3ba1-00dd-4040-89c3-a856e4b77da2",
13547
+ "name": "List the groups that are assigned to the organization. - default",
13070
13548
  "request": {
13071
13549
  "urlPathTemplate": "/organizations/{organization_id}/groups",
13072
13550
  "method": "GET",
@@ -13096,7 +13574,7 @@
13096
13574
  "Content-Type": "application/json"
13097
13575
  }
13098
13576
  },
13099
- "uuid": "c4da691c-ffe9-48de-9227-f8ce48855cda",
13577
+ "uuid": "6d9e3ba1-00dd-4040-89c3-a856e4b77da2",
13100
13578
  "persistent": true,
13101
13579
  "priority": 3,
13102
13580
  "metadata": {
@@ -13109,8 +13587,8 @@
13109
13587
  }
13110
13588
  },
13111
13589
  {
13112
- "id": "25999a58-81d7-488c-9a80-5967b5f1e6ae",
13113
- "name": "Lists the roles assigned to a group in the context of an organization. - default",
13590
+ "id": "709cfc79-902f-4c6b-9c1d-8f115c63e170",
13591
+ "name": "List the roles assigned to a group in the context of an organization. - default",
13114
13592
  "request": {
13115
13593
  "urlPathTemplate": "/organizations/{organization_id}/groups/{group_id}/roles",
13116
13594
  "method": "GET",
@@ -13138,12 +13616,12 @@
13138
13616
  },
13139
13617
  "response": {
13140
13618
  "status": 200,
13141
- "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n }\n ],\n \"next\": \"next\"\n}",
13619
+ "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n }\n ],\n \"next\": \"next\"\n}",
13142
13620
  "headers": {
13143
13621
  "Content-Type": "application/json"
13144
13622
  }
13145
13623
  },
13146
- "uuid": "25999a58-81d7-488c-9a80-5967b5f1e6ae",
13624
+ "uuid": "709cfc79-902f-4c6b-9c1d-8f115c63e170",
13147
13625
  "persistent": true,
13148
13626
  "priority": 3,
13149
13627
  "metadata": {
@@ -13156,8 +13634,8 @@
13156
13634
  }
13157
13635
  },
13158
13636
  {
13159
- "id": "5f66622b-f0dc-4cab-8cb9-c5dd4f868ef6",
13160
- "name": "Assigns roles to a group in an organization context. - default",
13637
+ "id": "51f1e8f1-c3f9-4662-b84c-98d35f72e50c",
13638
+ "name": "Assign roles to a group in an organization context. - default",
13161
13639
  "request": {
13162
13640
  "urlPathTemplate": "/organizations/{organization_id}/groups/{group_id}/roles",
13163
13641
  "method": "POST",
@@ -13182,7 +13660,7 @@
13182
13660
  "Content-Type": "application/json"
13183
13661
  }
13184
13662
  },
13185
- "uuid": "5f66622b-f0dc-4cab-8cb9-c5dd4f868ef6",
13663
+ "uuid": "51f1e8f1-c3f9-4662-b84c-98d35f72e50c",
13186
13664
  "persistent": true,
13187
13665
  "priority": 3,
13188
13666
  "metadata": {
@@ -13195,8 +13673,8 @@
13195
13673
  }
13196
13674
  },
13197
13675
  {
13198
- "id": "f3a06a3e-a047-4c64-ad21-52cf3943c125",
13199
- "name": "Removes roles assigned to a group in an organization context. - default",
13676
+ "id": "41aa31c6-ab88-4d21-a15f-f2238b94e356",
13677
+ "name": "Remove roles assigned to a group in an organization context. - default",
13200
13678
  "request": {
13201
13679
  "urlPathTemplate": "/organizations/{organization_id}/groups/{group_id}/roles",
13202
13680
  "method": "DELETE",
@@ -13221,7 +13699,7 @@
13221
13699
  "Content-Type": "application/json"
13222
13700
  }
13223
13701
  },
13224
- "uuid": "f3a06a3e-a047-4c64-ad21-52cf3943c125",
13702
+ "uuid": "41aa31c6-ab88-4d21-a15f-f2238b94e356",
13225
13703
  "persistent": true,
13226
13704
  "priority": 3,
13227
13705
  "metadata": {
@@ -13313,7 +13791,7 @@
13313
13791
  },
13314
13792
  "response": {
13315
13793
  "status": 200,
13316
- "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n }\n ]\n}",
13794
+ "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n }\n ]\n}",
13317
13795
  "headers": {
13318
13796
  "Content-Type": "application/json"
13319
13797
  }
@@ -13459,8 +13937,8 @@
13459
13937
  }
13460
13938
  },
13461
13939
  {
13462
- "id": "ffccd1de-fe6a-40b4-830b-54a8b73f173c",
13463
- "name": "Get the members assigned to an organization role - default",
13940
+ "id": "b184f317-24f3-4e73-9e7b-c6e7decd08e0",
13941
+ "name": "List the members assigned to a role in the context of an organization - default",
13464
13942
  "request": {
13465
13943
  "urlPathTemplate": "/organizations/{id}/roles/{role_id}/members",
13466
13944
  "method": "GET",
@@ -13499,7 +13977,54 @@
13499
13977
  "Content-Type": "application/json"
13500
13978
  }
13501
13979
  },
13502
- "uuid": "ffccd1de-fe6a-40b4-830b-54a8b73f173c",
13980
+ "uuid": "b184f317-24f3-4e73-9e7b-c6e7decd08e0",
13981
+ "persistent": true,
13982
+ "priority": 3,
13983
+ "metadata": {
13984
+ "mocklab": {
13985
+ "created": {
13986
+ "at": "2020-01-01T00:00:00.000Z",
13987
+ "via": "SYSTEM"
13988
+ }
13989
+ }
13990
+ }
13991
+ },
13992
+ {
13993
+ "id": "c6a72036-f7db-4e59-a8cf-684c7aa65301",
13994
+ "name": "List the groups assigned to a role in the context of an organization - default",
13995
+ "request": {
13996
+ "urlPathTemplate": "/organizations/{organization_id}/roles/{role_id}/groups",
13997
+ "method": "GET",
13998
+ "headers": {
13999
+ "Authorization": {
14000
+ "matches": "Bearer .+"
14001
+ }
14002
+ },
14003
+ "pathParameters": {
14004
+ "organization_id": {
14005
+ "equalTo": "organization_id"
14006
+ },
14007
+ "role_id": {
14008
+ "equalTo": "role_id"
14009
+ }
14010
+ },
14011
+ "queryParameters": {
14012
+ "from": {
14013
+ "equalTo": "from"
14014
+ },
14015
+ "take": {
14016
+ "equalTo": "1"
14017
+ }
14018
+ }
14019
+ },
14020
+ "response": {
14021
+ "status": 200,
14022
+ "body": "{\n \"groups\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"external_id\": \"external_id\",\n \"connection_id\": \"connection_id\",\n \"organization_id\": \"organization_id\",\n \"tenant_name\": \"tenant_name\",\n \"description\": \"description\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"updated_at\": \"2024-01-15T09:30:00Z\"\n }\n ],\n \"next\": \"next\"\n}",
14023
+ "headers": {
14024
+ "Content-Type": "application/json"
14025
+ }
14026
+ },
14027
+ "uuid": "c6a72036-f7db-4e59-a8cf-684c7aa65301",
13503
14028
  "persistent": true,
13504
14029
  "priority": 3,
13505
14030
  "metadata": {
@@ -14206,6 +14731,9 @@
14206
14731
  }
14207
14732
  },
14208
14733
  "queryParameters": {
14734
+ "include_totals": {
14735
+ "equalTo": "true"
14736
+ },
14209
14737
  "from": {
14210
14738
  "equalTo": "from"
14211
14739
  },
@@ -14852,8 +15380,8 @@
14852
15380
  }
14853
15381
  },
14854
15382
  {
14855
- "id": "275c2e74-3552-46aa-bd98-e7945f609962",
14856
- "name": "Lists the permissions assigned to a user directly or through roles or groups. - default",
15383
+ "id": "7536c164-3568-4198-bcd2-c4f13e028cf6",
15384
+ "name": "List the permissions assigned to a user directly or through roles or groups. - default",
14857
15385
  "request": {
14858
15386
  "urlPathTemplate": "/users/{id}/effective-permissions",
14859
15387
  "method": "GET",
@@ -14886,7 +15414,7 @@
14886
15414
  "Content-Type": "application/json"
14887
15415
  }
14888
15416
  },
14889
- "uuid": "275c2e74-3552-46aa-bd98-e7945f609962",
15417
+ "uuid": "7536c164-3568-4198-bcd2-c4f13e028cf6",
14890
15418
  "persistent": true,
14891
15419
  "priority": 3,
14892
15420
  "metadata": {
@@ -14899,8 +15427,8 @@
14899
15427
  }
14900
15428
  },
14901
15429
  {
14902
- "id": "0a1118c7-87a0-4e15-a026-c26ae69fc942",
14903
- "name": "Lists the roles for a user with sources: directly assigned or through group membership. - default",
15430
+ "id": "ca15acda-19bd-4ac9-8810-10a77a44c083",
15431
+ "name": "List the roles for a user with sources: directly assigned or through group membership. - default",
14904
15432
  "request": {
14905
15433
  "urlPathTemplate": "/users/{id}/effective-roles",
14906
15434
  "method": "GET",
@@ -14930,7 +15458,7 @@
14930
15458
  "Content-Type": "application/json"
14931
15459
  }
14932
15460
  },
14933
- "uuid": "0a1118c7-87a0-4e15-a026-c26ae69fc942",
15461
+ "uuid": "ca15acda-19bd-4ac9-8810-10a77a44c083",
14934
15462
  "persistent": true,
14935
15463
  "priority": 3,
14936
15464
  "metadata": {
@@ -15001,6 +15529,9 @@
15001
15529
  "include_fields": {
15002
15530
  "equalTo": "true"
15003
15531
  },
15532
+ "include_totals": {
15533
+ "equalTo": "true"
15534
+ },
15004
15535
  "from": {
15005
15536
  "equalTo": "from"
15006
15537
  },
@@ -15261,7 +15792,7 @@
15261
15792
  },
15262
15793
  "response": {
15263
15794
  "status": 200,
15264
- "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\"\n }\n ]\n}",
15795
+ "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"organizations\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"display_name\": \"display_name\",\n \"token_quota\": {\n \"client_credentials\": {}\n },\n \"third_party_client_access\": \"block\",\n \"is_app_entitlement_active\": true\n }\n ]\n}",
15265
15796
  "headers": {
15266
15797
  "Content-Type": "application/json"
15267
15798
  }
@@ -15463,7 +15994,7 @@
15463
15994
  },
15464
15995
  "response": {
15465
15996
  "status": 200,
15466
- "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\"\n }\n ]\n}",
15997
+ "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\"\n }\n ]\n}",
15467
15998
  "headers": {
15468
15999
  "Content-Type": "application/json"
15469
16000
  }
@@ -15517,8 +16048,8 @@
15517
16048
  }
15518
16049
  },
15519
16050
  {
15520
- "id": "c727015f-123f-4f98-9b24-25828361a4ab",
15521
- "name": "Removes roles from a user - default",
16051
+ "id": "45b3a04d-67d0-4781-84c6-686818e8cc76",
16052
+ "name": "Remove roles from a user - default",
15522
16053
  "request": {
15523
16054
  "urlPathTemplate": "/users/{id}/roles",
15524
16055
  "method": "DELETE",
@@ -15540,7 +16071,7 @@
15540
16071
  "Content-Type": "application/json"
15541
16072
  }
15542
16073
  },
15543
- "uuid": "c727015f-123f-4f98-9b24-25828361a4ab",
16074
+ "uuid": "45b3a04d-67d0-4781-84c6-686818e8cc76",
15544
16075
  "persistent": true,
15545
16076
  "priority": 3,
15546
16077
  "metadata": {
@@ -15569,6 +16100,9 @@
15569
16100
  }
15570
16101
  },
15571
16102
  "queryParameters": {
16103
+ "include_totals": {
16104
+ "equalTo": "true"
16105
+ },
15572
16106
  "from": {
15573
16107
  "equalTo": "from"
15574
16108
  },
@@ -15649,6 +16183,9 @@
15649
16183
  }
15650
16184
  },
15651
16185
  "queryParameters": {
16186
+ "include_totals": {
16187
+ "equalTo": "true"
16188
+ },
15652
16189
  "from": {
15653
16190
  "equalTo": "from"
15654
16191
  },
@@ -15713,8 +16250,8 @@
15713
16250
  }
15714
16251
  },
15715
16252
  {
15716
- "id": "bb869da8-6539-45f5-82b2-96dba9672d2b",
15717
- "name": "Lists the roles which grant the user a given permission (whether directly or through groups). - default",
16253
+ "id": "4e6af123-91a7-4267-8471-a054fc227366",
16254
+ "name": "List the roles which grant the user a given permission (whether directly or through groups). - default",
15718
16255
  "request": {
15719
16256
  "urlPathTemplate": "/users/{id}/effective-permissions/sources/effective-roles",
15720
16257
  "method": "GET",
@@ -15745,12 +16282,12 @@
15745
16282
  },
15746
16283
  "response": {
15747
16284
  "status": 200,
15748
- "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"sources\": [\n \"direct\"\n ]\n }\n ],\n \"next\": \"next\"\n}",
16285
+ "body": "{\n \"roles\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"description\": \"description\",\n \"type\": \"tenant\",\n \"owner_id\": \"owner_id\",\n \"sources\": [\n \"direct\"\n ]\n }\n ],\n \"next\": \"next\"\n}",
15749
16286
  "headers": {
15750
16287
  "Content-Type": "application/json"
15751
16288
  }
15752
16289
  },
15753
- "uuid": "bb869da8-6539-45f5-82b2-96dba9672d2b",
16290
+ "uuid": "4e6af123-91a7-4267-8471-a054fc227366",
15754
16291
  "persistent": true,
15755
16292
  "priority": 3,
15756
16293
  "metadata": {
@@ -15990,6 +16527,6 @@
15990
16527
  }
15991
16528
  ],
15992
16529
  "meta": {
15993
- "total": 428
16530
+ "total": 441
15994
16531
  }
15995
16532
  }