Skip to main content
PATCH
/
api
/
v2
/
users
/
me
/
password
Update current user's password
curl --request PATCH \
  --url https://demo.komga.org/api/v2/users/me/password \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "password": "<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.

Body

application/json
password
string
required
Minimum string length: 1

Response

No Content