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