Skip to content

Commit 20da697

Browse files
committed
docs: bump to 2fab0969d8ebaa66f373efb434591679be047dc1
1 parent 5a67c2a commit 20da697

File tree

1 file changed

+90
-0
lines changed

1 file changed

+90
-0
lines changed

docs/reference/api.json

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10421,6 +10421,19 @@
1042110421
"required": ["identifier", "method"],
1042210422
"type": "object"
1042310423
},
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+
},
1042410437
"updateRecoveryFlowBody": {
1042510438
"description": "Update Recovery Flow Request Body",
1042610439
"discriminator": {
@@ -16843,6 +16856,83 @@
1684316856
],
1684416857
"summary": "Delete an organization onboarding portal link",
1684516858
"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"]
1684616936
}
1684716937
},
1684816938
"/projects/{project_id}/revision/{revision_id}": {

0 commit comments

Comments
 (0)