AviatoAviato
DeveloperAPI ReferenceAdapterJellyfinUsers

List visible users

GET
/api/adapter/jellyfin/Users

Returns only the currently-authenticated user, in a single-element array. Multi-user enumeration through the adapter is intentionally restricted.

Response Body

application/json

curl -X GET "https://example.com/api/adapter/jellyfin/Users"
[
  {
    "Id": "string",
    "Name": "string",
    "ServerId": "string",
    "HasPassword": true,
    "HasConfiguredPassword": true,
    "HasConfiguredEasyPassword": true,
    "EnableAutoLogin": true,
    "LastLoginDate": "string",
    "LastActivityDate": "string",
    "Configuration": {
      "AudioLanguagePreference": "string",
      "PlayDefaultAudioTrack": true,
      "SubtitleLanguagePreference": "string",
      "DisplayMissingEpisodes": true,
      "GroupedFolders": [
        "string"
      ],
      "SubtitleMode": "Default",
      "DisplayCollectionsView": true,
      "EnableLocalPassword": true,
      "OrderedViews": [
        "string"
      ],
      "LatestItemsExcludes": [
        "string"
      ],
      "MyMediaExcludes": [
        "string"
      ],
      "HidePlayedInLatest": true,
      "RememberAudioSelections": true,
      "RememberSubtitleSelections": true,
      "EnableNextEpisodeAutoPlay": true,
      "property1": null,
      "property2": null
    },
    "Policy": {
      "AuthenticationProviderId": "string",
      "PasswordResetProviderId": "string",
      "IsAdministrator": true,
      "IsHidden": true,
      "IsDisabled": true,
      "EnableUserPreferenceAccess": true,
      "EnableRemoteAccess": true,
      "EnableLiveTvAccess": true,
      "EnableMediaPlayback": true,
      "EnableAudioPlaybackTranscoding": true,
      "EnableVideoPlaybackTranscoding": true,
      "EnablePlaybackRemuxing": true,
      "EnableContentDeletion": true,
      "EnableContentDownloading": true,
      "EnableSyncTranscoding": true,
      "EnableMediaConversion": true,
      "EnableAllFolders": true,
      "EnableAllChannels": true,
      "EnableAllDevices": true,
      "EnablePublicSharing": true,
      "EnableCollectionManagement": true,
      "EnableSubtitleManagement": true,
      "EnableLyricManagement": true,
      "property1": null,
      "property2": null
    },
    "PrimaryImageTag": "string",
    "PrimaryImageAspectRatio": 0,
    "property1": null,
    "property2": null
  }
]