Skip to main content
GET
/
api
/
v2
/
users
List users
curl --request GET \
  --url https://demo.komga.org/api/v2/users \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "email": "<string>",
    "id": "<string>",
    "labelsAllow": [
      "<string>"
    ],
    "labelsExclude": [
      "<string>"
    ],
    "roles": [
      "<string>"
    ],
    "sharedAllLibraries": true,
    "sharedLibrariesIds": [
      "<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.

Response

OK

email
string
required
id
string
required
labelsAllow
string[]
required
labelsExclude
string[]
required
roles
string[]
required
sharedAllLibraries
boolean
required
sharedLibrariesIds
string[]
required
ageRestriction
object