AviatoAviato
DeveloperAPI ReferenceAdapterJellyfinUsersMe

Current authenticated user

GET
/api/adapter/jellyfin/Users/Me

Returns the Jellyfin User block for the bearer of the current access token. Most clients call this immediately after login as a token-validation probe.

Response Body

application/json

application/json

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