action jellyfin_get_display_preferences { label: "Get Display Preferences." provider: jellyfin method: GET path: "/DisplayPreferences/{displayPreferencesId}" encoding: json input: { type: "object" properties: { client: { type: "string" description: "Client." } displayPreferencesId: { type: "string" description: "Display preferences id." } userId: { type: "string" format: "uuid" description: "User id." } } required: ["client", "displayPreferencesId", "userId"] additionalProperties: false } output: { type: "object" description: "Defines the display preferences for any item that supports them (usually Folders)." properties: { Client: { type: "string" description: "Gets or sets the client." } CustomPrefs: { type: "object" description: "Gets or sets the custom prefs." } Id: { type: "string" description: "Gets or sets the user id." } IndexBy: { type: "string" description: "Gets or sets the index by." } PrimaryImageHeight: { type: "integer" format: "int32" description: "Gets or sets the height of the primary image." } PrimaryImageWidth: { type: "integer" format: "int32" description: "Gets or sets the width of the primary image." } RememberIndexing: { type: "boolean" description: "Gets or sets a value indicating whether [remember indexing]." } RememberSorting: { type: "boolean" description: "Gets or sets a value indicating whether [remember sorting]." } ScrollDirection: { type: "string" description: "An enum representing the axis that should be scrolled." enum: ["Horizontal", "Vertical"] } ShowBackdrop: { type: "boolean" description: "Gets or sets a value indicating whether to show backdrops on this item." } ShowSidebar: { type: "boolean" description: "Gets or sets a value indicating whether [show sidebar]." } SortBy: { type: "string" description: "Gets or sets the sort by." } SortOrder: { type: "string" description: "An enum representing the sorting order." enum: ["Ascending", "Descending"] } ViewType: { type: "string" description: "Gets or sets the type of the view." } } additionalProperties: false } }