Portal Auth Settings
Get Auth Settings
Returns the developer authentication configuration for a portal, which determines how developers can log in and how they are assigned to teams.
get/v3/portals/{portalId}/authentication-settings
Response
Details about a portal's authentication settings.
Example response
{
"basic_auth_enabled": true,
"oidc_auth_enabled": true,
"oidc_team_mapping_enabled": true,
"konnect_mapping_enabled": false,
"oidc_config": {
"issuer": "https://identity.example.com/v2",
"client_id": "x7id0o42lklas0blidl2",
"scopes": [
"email",
"openid",
"profile"
],
"claim_mappings": {
"name": "name",
"email": "email",
"groups": "custom-group-claim"
}
}
}