Summary
Get a single SSO configuration
Description
Get a single SSO configuration
Route
GET /sso/configs/:name
Roles
admin
apiread
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
name |
string |
yes |
The name of the SSO configuration to get |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
object |
The SSO configuration document |
Copied to Clipboard
{
"name": "Okta",
"ssoType": "saml",
"settings": {
"issuer": "https://www.auth0.com/oauth2/example",
"loginURL": "https://www.auth0.com/login",
"certificate": "MIIDrjCCApagAwIBAgIGAYbHI140MA0GCSqGSIb3DQEBCwUAMIGXMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzENMAsGA1UECgwET2t0YTEU==",
"samlUserNameAttribute": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name",
"samlGroupsAttribute": "http://schemas.microsoft.com/ws/2008/06/identity/claims/groups",
"forceLogin": false,
"description": "This sso configuration connects to Okta",
"logoutURL": "https://www.auth0.com/logout",
"samlEmailAttribute": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress",
"samlFirstNameAttribute": "name"
},
"tested": true
}
Copied to Clipboard
{
"title": "result",
"$ref": "sso-schema"
}