---
title: "Update System Settings"
method: PATCH
path: "/system/settings"
tags: ["System"]
---

# Update System Settings

`PATCH /system/settings`

## Query parameters

- `cookie_name` string, nullable

## Request body

- SystemSettingsUpdate
  - `maintenance_enabled` boolean, nullable
  - `tracing_enabled` boolean, nullable
  - `inbound_guardrail_llm_settings_id` integer, nullable
  - `outbound_guardrail_llm_settings_id` integer, nullable
  - `embedding_llm_settings_id` integer, nullable
  - `maintenance_start_at` string, date-time, nullable
  - `maintenance_end_at` string, date-time, nullable
  - `maintenance_message` string, nullable
  - `reason` string, nullable

## Response `200`

Successful Response

- SystemSettings
  - `created_at` string, date-time — UTC timestamp when the record was created.
  - `updated_at` string, date-time — UTC timestamp when the record was last updated.
  - `id` integer, nullable — Primary key for the system settings record.
  - `maintenance_enabled` boolean — Whether maintenance mode is currently enabled.
  - `tracing_enabled` boolean — Whether observability tracing is enabled system-wide.
  - `inbound_guardrail_llm_settings_id` integer, nullable — ID of the LLM settings used for the inbound guardrail.
  - `outbound_guardrail_llm_settings_id` integer, nullable — ID of the LLM settings used for the outbound guardrail.
  - `embedding_llm_settings_id` integer, nullable — ID of the LLM settings used for embeddings.
  - `transcription_llm_settings_id` integer, nullable — ID of the LLM settings used for audio transcription.
  - `maintenance_start_at` string, date-time, nullable — Timestamp when the scheduled maintenance window starts.
  - `maintenance_end_at` string, date-time, nullable — Timestamp when the scheduled maintenance window ends.
  - `maintenance_message` string, nullable — Message shown to users during maintenance mode.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/neulandai/apis/neuland-ai-hub-api.md) · [All operations](https://skmtc.net/neulandai/apis/neuland-ai-hub-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/neulandai/neuland-ai-hub-api/versions/b53e89b98c2b/schema)
