curl --request DELETE \
--url https://demo.komga.org/api/v1/client-settings/user \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
[
"application.key1",
"application.key2"
]
'{
"violations": [
{
"fieldName": "<string>",
"message": "<string>"
}
]
}Setting key should be a valid lowercase namespace string like ‘application.domain.key’
curl --request DELETE \
--url https://demo.komga.org/api/v1/client-settings/user \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
[
"application.key1",
"application.key2"
]
'{
"violations": [
{
"fieldName": "<string>",
"message": "<string>"
}
]
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
No Content