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>"
}
]
}Setting key should be a valid lowercase namespace string like ‘application.domain.key’
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>"
}
]
}