Skip to main content
PATCH
/
admin
/
api
/
v1
/
observability
Patch Observability
curl --request PATCH \
  --url https://api.example.com/admin/api/v1/observability \
  --header 'Content-Type: application/json' \
  --data '
{
  "observability": {
    "config": {
      "provider": "LANGFUSE",
      "host": "https://cloud.langfuse.com",
      "publicKey": "",
      "secretKey": "",
      "runName": ""
    },
    "provider": "LANGFUSE",
    "enabled": true
  }
}
'
{
  "data": {
    "observability": {
      "config": {
        "provider": "LANGFUSE",
        "host": "https://cloud.langfuse.com",
        "publicKey": "",
        "secretKey": "",
        "runName": ""
      },
      "provider": "LANGFUSE",
      "enabled": true
    },
    "updatedAt": "2023-11-07T05:31:56Z"
  },
  "reload": {
    "message": "<string>",
    "error": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.idun-group.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Body for PATCH /admin/api/v1/observability. All fields optional.

observability
ObservabilityConfig · object

Observability configuration.

Response

Successful Response

data
StandaloneObservabilityRead · object
required

GET response and the data payload of PATCH responses.

reload
StandaloneReloadResult · object
required

Reload outcome attached to every admin mutation response.

reloaded means DB committed and runtime now uses the new config. restart_required means DB committed and process restart is needed. reload_failed means DB rolled back and runtime is unchanged.

Last modified on May 22, 2026