Skip to main content
PATCH
/
api
/
v1
/
books
/
metadata
Update book metadata in bulk
curl --request PATCH \
  --url https://demo.komga.org/api/v1/books/metadata \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "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

A map of book IDs which values are the metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don't want to update.

{key}
object

Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don't want to update.

Response

No Content