---
title: "Update podcast episode title and description"
method: POST
path: "/podcast/episodes/{episodeId}"
tags: ["Podcast"]
---

# Update podcast episode title and description

`POST /podcast/episodes/{episodeId}`

Updates the title and description of a specific podcast episode.
The episode must belong to a podcast owned by the authenticated user.

## Path parameters

- `episodeId` integer, required

## Request body

- object
  - `title` string, required — New episode title
  - `description` string, required — New episode description

## Response `200`

Episode updated successfully

- object
  - `success` boolean
  - `message` string

## Other responses

- `400` — Bad request - Missing required fields or invalid episode ID
- `401` — Unauthorized - valid API token required
- `404` — Episode not found or cannot be updated
- `500` — Internal server error during episode update

---

[API](https://skmtc.net/autocontentapi/apis/content-api.md) · [All operations](https://skmtc.net/autocontentapi/apis/content-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/autocontentapi/content-api/revisions/355890b6b4cc/schema)
