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
        • GETGet a list of toggles
        • GETGet Itential Platform configuration property
        • GETGet the full Itential Platform configuration
LogoLogo
Open sourceSupportFAQsDocs Home
Referenceserver

Get Itential Platform configuration property

GET
http://localhost:3000/server/config/:key
GET
/server/config/:key
$curl http://localhost:3000/server/config/key \
> -u "<username>:<password>"
1{
2 "name": "string",
3 "value": {},
4 "origin": "string"
5}

Returns a single Itential Platform configuration property, with value/origin definitions.

Was this page helpful?
Previous

Get the full Itential Platform configuration

Next
Built with

Authentication

AuthorizationBasic

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

Path parameters

keyanyRequired
The configuration property key.

Response

The value and origin of the requested property.
namestring
valuestring or boolean or double or map from strings to any or list of any or null
originstring

Errors

500
Internal Server Error