action jellyfin_get_configuration_pages { label: "Gets the configuration pages." provider: jellyfin method: GET path: "/web/ConfigurationPages" encoding: json input: { type: "object" properties: { enableInMainMenu: { type: "boolean" description: "Whether to enable in the main menu." } pageType: { type: "string" description: "Enum ConfigurationPageType." enum: ["PluginConfiguration", "None"] } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "The configuration page info." properties: { ConfigurationPageType: { type: "string" description: "Enum ConfigurationPageType." enum: ["PluginConfiguration", "None"] } DisplayName: { type: "string" description: "Gets or sets the display name." } EnableInMainMenu: { type: "boolean" description: "Gets or sets a value indicating whether the configurations page is enabled in the main menu." } MenuIcon: { type: "string" description: "Gets or sets the menu icon." } MenuSection: { type: "string" description: "Gets or sets the menu section." } Name: { type: "string" description: "Gets or sets the name." } PluginId: { type: "string" format: "uuid" description: "Gets or sets the plugin id." } } additionalProperties: false } } }