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>"
]
}
]Required role: ADMIN
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>"
]
}
]Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.