|
10421 | 10421 | "required": ["identifier", "method"],
|
10422 | 10422 | "type": "object"
|
10423 | 10423 | },
|
| 10424 | + "updateOrganizationOnboardingPortalLinkBody": { |
| 10425 | + "properties": { |
| 10426 | + "enable_sso": { |
| 10427 | + "description": "Feature flag to enable SSO configuration", |
| 10428 | + "type": "boolean" |
| 10429 | + }, |
| 10430 | + "expires_at": { |
| 10431 | + "$ref": "#/components/schemas/Time" |
| 10432 | + } |
| 10433 | + }, |
| 10434 | + "required": ["enable_sso"], |
| 10435 | + "type": "object" |
| 10436 | + }, |
10424 | 10437 | "updateRecoveryFlowBody": {
|
10425 | 10438 | "description": "Update Recovery Flow Request Body",
|
10426 | 10439 | "discriminator": {
|
|
16843 | 16856 | ],
|
16844 | 16857 | "summary": "Delete an organization onboarding portal link",
|
16845 | 16858 | "tags": ["project"]
|
| 16859 | + }, |
| 16860 | + "post": { |
| 16861 | + "description": "Update a onboarding portal link for an organization.", |
| 16862 | + "operationId": "updateOrganizationOnboardingPortalLink", |
| 16863 | + "parameters": [ |
| 16864 | + { |
| 16865 | + "description": "Project ID\n\nThe project's ID.", |
| 16866 | + "in": "path", |
| 16867 | + "name": "project_id", |
| 16868 | + "required": true, |
| 16869 | + "schema": { |
| 16870 | + "type": "string" |
| 16871 | + } |
| 16872 | + }, |
| 16873 | + { |
| 16874 | + "description": "Organization ID\n\nThe Organization's ID.", |
| 16875 | + "in": "path", |
| 16876 | + "name": "organization_id", |
| 16877 | + "required": true, |
| 16878 | + "schema": { |
| 16879 | + "type": "string" |
| 16880 | + } |
| 16881 | + }, |
| 16882 | + { |
| 16883 | + "in": "path", |
| 16884 | + "name": "onboarding_portal_link_id", |
| 16885 | + "required": true, |
| 16886 | + "schema": { |
| 16887 | + "type": "string" |
| 16888 | + } |
| 16889 | + } |
| 16890 | + ], |
| 16891 | + "requestBody": { |
| 16892 | + "content": { |
| 16893 | + "application/json": { |
| 16894 | + "schema": { |
| 16895 | + "$ref": "#/components/schemas/updateOrganizationOnboardingPortalLinkBody" |
| 16896 | + } |
| 16897 | + } |
| 16898 | + }, |
| 16899 | + "x-originalParamName": "Body" |
| 16900 | + }, |
| 16901 | + "responses": { |
| 16902 | + "200": { |
| 16903 | + "content": { |
| 16904 | + "application/json": { |
| 16905 | + "schema": { |
| 16906 | + "$ref": "#/components/schemas/onboardingPortalLink" |
| 16907 | + } |
| 16908 | + } |
| 16909 | + }, |
| 16910 | + "description": "onboardingPortalLink" |
| 16911 | + }, |
| 16912 | + "default": { |
| 16913 | + "content": { |
| 16914 | + "application/json": { |
| 16915 | + "schema": { |
| 16916 | + "$ref": "#/components/schemas/errorGeneric" |
| 16917 | + } |
| 16918 | + } |
| 16919 | + }, |
| 16920 | + "description": "errorGeneric" |
| 16921 | + } |
| 16922 | + }, |
| 16923 | + "security": [ |
| 16924 | + { |
| 16925 | + "oryWorkspaceApiKey": [] |
| 16926 | + } |
| 16927 | + ], |
| 16928 | + "servers": [ |
| 16929 | + { |
| 16930 | + "description": "The Ory Network control plane API which is used to manage your Ory Network projects and workspaces.", |
| 16931 | + "url": "https://api.console.ory.sh" |
| 16932 | + } |
| 16933 | + ], |
| 16934 | + "summary": "Update organization onboarding portal link", |
| 16935 | + "tags": ["project"] |
16846 | 16936 | }
|
16847 | 16937 | },
|
16848 | 16938 | "/projects/{project_id}/revision/{revision_id}": {
|
|
0 commit comments