action hubhopper_get_podcasts_podcast_id_episodes { label: "get_podcasts_podcastId_episodes" description: "Get a list of all episodes under a podcast." provider: hubhopper method: GET path: "/podcasts/{podcastId}/episodes" encoding: json input: { type: "object" properties: { filters: { type: "string" } order: { type: "string" } page: { type: "string" } pageSize: { type: "string" } podcastId: { type: "string" } } required: ["podcastId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }