action jellyfin_get_external_id_infos { label: "Get the item's external id info." provider: jellyfin method: GET path: "/Items/{itemId}/ExternalIdInfos" encoding: json input: { type: "object" properties: { itemId: { type: "string" format: "uuid" description: "Item id." } } required: ["itemId"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "Represents the external id information for serialization to the client." properties: { Key: { type: "string" description: "Gets or sets the unique key for this id. This key should be unique across all providers." } Name: { type: "string" description: "Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc)." } Type: { type: "string" description: "The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo." enum: ["Album", "AlbumArtist", "Artist", "BoxSet", "Episode", "Movie", "OtherArtist", "Person", "ReleaseGroup", "Season", "Series", "Track"] } UrlFormatString: { type: "string" description: "Gets or sets the URL format string." } } additionalProperties: false } } }