action listennotes_delete_podcast_by_id { label: "Request to delete a podcast" description: "Podcast hosting services can use this endpoint to streamline the process of podcast deletion on behave of their users (podcasters). We will review the deletion request within 12 hours. If the podcast is already deleted, the \"status\" field in the response will be \"deleted\". Otherwise, the status field will be \"in review\". If you want to get a notification once the podcast is deleted, you can configure a webhook url in the dashboard: listennotes.com/api/dashboard/#webhooks\n" provider: listennotes method: DELETE path: "/podcasts/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } reason: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["status"] properties: { status: { type: "string" description: "The status of this podcast deletion request." enum: ["deleted", "in review"] } } } }