AviatoAviato
DeveloperAPI ReferenceAdapterJellyfinUsersUserid

Fetch a user by ID

GET
/api/adapter/jellyfin/Users/{userId}

For v1 only the currently-authenticated user is returned; other user IDs receive 404. Other-user access is intentionally restricted to avoid leaking the user list to anyone with a valid token.

Path Parameters

userId*string

Aviato user ID

Response Body

application/json

application/json

curl -X GET "https://example.com/api/adapter/jellyfin/Users/string"
{
  "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
}
{
  "error": "string"
}