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

Response

No Content