Skip to main content
PATCH
/
api
/
v1
/
client-settings
/
user
Save user settings
curl --request PATCH \
  --url https://demo.komga.org/api/v1/client-settings/user \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "application.key1": {
    "value": "a string value"
  },
  "application.key2": {
    "value": "{\"json\":\"object\"}"
  }
}
'
{
  "violations": [
    {
      "fieldName": "<string>",
      "message": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
{key}
object

Response

No Content