action spotify_check_users_saved_episodes { label: "Check User's Saved Episodes\n" description: "Check if one or more episodes is already saved in the current Spotify user's 'Your Episodes' library.\n" provider: spotify method: GET path: "/me/episodes/contains" encoding: json input: { type: "object" properties: { ids: { type: "string" description: "A comma-separated list of the [Spotify IDs](/documentation/web-api/#spotify-uris-and-ids) for the episodes. Maximum: 50 IDs.\n" } } required: ["ids"] additionalProperties: false } output: { type: "object" additionalProperties: true } }