Skip to main content
PATCH
/
api
/
v1
/
readlists
/
{id}
Update readlist
curl --request PATCH \
  --url https://demo.komga.org/api/v1/readlists/{id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "bookIds": [
    "<string>"
  ],
  "name": "<string>",
  "ordered": true,
  "summary": "<string>"
}
'
{
  "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.

Path Parameters

id
string
required

Body

application/json
bookIds
string[]
name
string
ordered
boolean
summary
string

Response

No Content