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

Activate an SSO configuration

POST
http://localhost:3000/sso/configs/:name/active
POST
/sso/configs/:name/active
$curl -X POST http://localhost:3000/sso/configs/name/active \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "status": "OK",
3 "message": "A sample success message"
4}
Activates an SSO configuration.
Was this page helpful?
Previous

Create an SSO configuration

Next
Built with

Authentication

AuthorizationBasic

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

Path parameters

namestringRequired
The name of the SSO configuration to delete

Request

request body
activebooleanOptional

Response

The result of the SSO config update process.
statusenum
The status of the API request.
Allowed values:
messagestring
Message containing either confirmation of the operation or the reason for the failure of the operation.

Errors

500
Internal Server Error