AviatoAviato
DeveloperAPI ReferenceAdapterJellyfinDisplaypreferencesDisplaypreferencesid

Get per-user UI preferences (default stub)

Returns a default-valued DisplayPreferences document. Aviato does not yet persist Jellyfin-client UI prefs server-side; clients fall back to their own defaults when fields are absent.

GET
/api/adapter/jellyfin/DisplayPreferences/{displayPreferencesId}

Path Parameters

displayPreferencesId*string

Query Parameters

userId?string
client?string

Response Body

application/json

curl -X GET "https://loading/api/adapter/jellyfin/DisplayPreferences/string"
{
  "Id": "string",
  "ViewType": "string",
  "SortBy": "string",
  "IndexBy": "string",
  "RememberIndexing": true,
  "PrimaryImageHeight": 0,
  "PrimaryImageWidth": 0,
  "CustomPrefs": {
    "property1": "string",
    "property2": "string"
  },
  "ScrollDirection": "Horizontal",
  "ShowBackdrop": true,
  "RememberSorting": true,
  "SortOrder": "Ascending",
  "ShowSidebar": true,
  "Client": "string",
  "property1": null,
  "property2": null
}