action hubhopper_get_categories_category_id_podcasts { label: "get_categories_categoryId_podcasts" description: "Get a list of all podcasts under a category." provider: hubhopper method: GET path: "/categories/{categoryId}/podcasts" encoding: json input: { type: "object" properties: { categoryId: { type: "string" } filters: { type: "string" } order: { type: "string" } page: { type: "string" } pageSize: { type: "string" } } required: ["categoryId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }