REST API

Configuration Endpoint

Updated: September 20, 2023

Get a Nuxeo instance's configuration

GET /management/configuration

Response

If successful, returns a JSON representation of configured properties (the ones from the configuration.properties file) and the runtime properties (the ones from Framework#getProperties) with sensitive informations redacted.

Status Codes

  • 200 _OK_ - Success.

Sample

curl -u Administrator:Administrator \
http://localhost:8080/nuxeo/api/v1/management/configuration
{
  "configuredProperties": {
    "NUXEO_HOME": "...",
    ...
  }
  "runtimeProperties": {
    "NUXEO_HOME": "...",
    ...
  }
}