curl --request PUT \
--url https://demo.komga.org/api/v1/page-hashes \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "DELETE_AUTO",
"hash": "<string>",
"size": 123
}
'{
"violations": [
{
"fieldName": "<string>",
"message": "<string>"
}
]
}Required role: ADMIN
curl --request PUT \
--url https://demo.komga.org/api/v1/page-hashes \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "DELETE_AUTO",
"hash": "<string>",
"size": 123
}
'{
"violations": [
{
"fieldName": "<string>",
"message": "<string>"
}
]
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Accepted