Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion docs/kratos/organizations/organizations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,16 @@ import BrowserWindow from "@site/src/theme/BrowserWindow"
</BrowserWindow>
```

##### Configure provider-specific data mappings

Data mappers can be configured per provider in the Onboarding Portal. When creating an onboarding portal, admins can select an SSO
or SCIM provider and define a dedicated data mapping for that provider, enabling precise control over how claims and directory
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Besides the screen shot, we don't give any guidance for data mapping. Are there any required data elements? Does it depend on elements in the identity schema? I think a couple of examples for guidance would be helpful here.

attributes are mapped to identity traits.

<BrowserWindow url="https://console.ory.sh/projects/<id>/authentication/organizations/<id>/edit">
![Onboarding portal link](./_static/onboarding-portal-link-mappers.png)
</BrowserWindow>

```mdx-code-block
</TabItem>
<TabItem value="api" label="API">
Expand All @@ -470,7 +480,8 @@ curl -X POST --location "https://api.console.ory.sh/projects/$PROJECT_ID/organiz
"expires_at": "2025-06-01T00:00:00Z",
"enable_sso": true,
"enable_scim": true,
"custom_hostname_id": "use a custom domain id from branding, omit the field otherwise"
"custom_hostname_id": "use a custom domain id from branding, omit the field otherwise",
"saml_mapper_url": "base64://{BASE64_ENCODED_JSONNET}"
}'
```

Expand Down
Loading