For the complete documentation index, see llms.txt. This page is also available as Markdown.

Settings

List Runtime settings

get

List Runtime namespace settings. Missing rows are returned as schema-defaulted documents with configured: false.

Authorizations
AuthorizationstringOptional
Bearer authentication header of the form Bearer <token>.
Responses
200

Runtime settings loaded

application/json
get/system/settings
200

Runtime settings loaded

Get effective settings

get

Get the merged effective configuration with known Static/bootstrap secrets redacted.

Authorizations
AuthorizationstringOptional
Bearer authentication header of the form Bearer <token>.
Responses
200

Effective settings loaded

application/json
get/system/settings/effective
200

Effective settings loaded

Get Runtime setting

get

Get one Runtime namespace setting. Missing rows are returned as schema-defaulted documents with configured: false.

Authorizations
AuthorizationstringOptional
Bearer authentication header of the form Bearer <token>.
Path parameters
namespacestring · enumRequiredPossible values:
Responses
200

Runtime setting loaded

application/json
get/system/settings/{namespace}

Replace Runtime setting

put

Replace one Runtime namespace document. First writes require expected_revision: 0; updates require the current revision.

Authorizations
AuthorizationstringOptional
Bearer authentication header of the form Bearer <token>.
Path parameters
namespacestring · enumRequiredPossible values:
Body
expected_revisionintegerRequired
Responses
200

Runtime setting replaced

application/json
put/system/settings/{namespace}

Reset Runtime setting

delete

Reset one Runtime namespace to defaults. Requires expected_revision; missing namespace with expected_revision: 0 is the only no-op reset.

Authorizations
AuthorizationstringOptional
Bearer authentication header of the form Bearer <token>.
Path parameters
namespacestring · enumRequiredPossible values:
Body
expected_revisionintegerRequired
Responses
200

Runtime setting reset to defaults

application/json
delete/system/settings/{namespace}

Last updated