action zeno_delete_podcast { label: "deletePodcast" description: "Delete podcast" provider: zeno method: DELETE path: "/api/v2/podcasts/{podcastKey}" encoding: json input: { type: "object" properties: { podcastKey: { type: "string" } } required: ["podcastKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }