curl --request PATCH \
--url https://demo.komga.org/api/v1/series/{seriesId}/metadata \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"ageRating": 123,
"ageRatingLock": true,
"alternateTitles": [
{
"label": "<string>",
"title": "<string>"
}
],
"alternateTitlesLock": true,
"genres": [
"<string>"
],
"genresLock": true,
"language": "<string>",
"languageLock": true,
"links": [
{
"label": "<string>",
"url": "<string>"
}
],
"linksLock": true,
"publisher": "<string>",
"publisherLock": true,
"readingDirection": "LEFT_TO_RIGHT",
"readingDirectionLock": true,
"sharingLabels": [
"<string>"
],
"sharingLabelsLock": true,
"status": "ENDED",
"statusLock": true,
"summary": "<string>",
"summaryLock": true,
"tags": [
"<string>"
],
"tagsLock": true,
"title": "<string>",
"titleLock": true,
"titleSort": "<string>",
"titleSortLock": true,
"totalBookCount": 123,
"totalBookCountLock": true
}
'