For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI referenceRelease notes
DocumentationAPI referenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTActivate an SSO configuration
        • POSTCreate an SSO configuration
        • DELDelete an SSO configuration
        • GETGet SSO configuration
        • GETList all SSO configurations
        • PUTUpdate an SSO configuration
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceSSO

List all SSO configurations

GET
http://localhost:3000/sso/configs
GET
/sso/configs
$curl http://localhost:3000/sso/configs \
> -u "<username>:<password>"
1{
2 "results": [
3 {
4 "name": "Auth0",
5 "ssoType": "saml",
6 "settings": {
7 "description": "This sso configuration connects to Okta",
8 "issuer": "https://www.auth0.com/oauth2/example",
9 "loginURL": "https://www.auth0.com/login",
10 "logoutURL": "https://www.auth0.com/logout",
11 "certificate": "MIIDrjCCApagAwIBAgIGAYbHI140MA0GCSqGSIb3DQEBCwUAMIGXMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzENMAsGA1UECgwET2t0YTEU==",
12 "samlEmailAttribute": "mail",
13 "samlUserNameAttribute": "userName",
14 "samlGroupsAttribute": "groups",
15 "samlFirstNameAttribute": "firstName",
16 "forceLogin": false,
17 "disableAuthnContext": false
18 },
19 "active": false,
20 "tested": true
21 }
22 ],
23 "total": 1
24}
Returns all SSO configurations.
Was this page helpful?
Previous

Update an SSO configuration

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Query parameters

containsstringOptional
contains
containsFieldenumOptional
containsField
equalsstringOptional
equals
equalsFieldenumOptional
equalsField
startsWithstringOptional
startsWith
startsWithFieldenumOptional
startsWithField
skipintegerOptional>=0Defaults to 0
skip
limitintegerOptional>=0Defaults to 25
limit
sortenumOptionalDefaults to name
sort
Allowed values:
orderenumOptionalDefaults to 1
order
Allowed values:

Response

Contains an array of SSO configurations and the total in the response.
resultslist of objects
totalinteger>=0
The total number of documents

Errors

500
Internal Server Error