PodcastUpdateRequest
Request body to update a podcast's mutable business fields. Every field is optional; only provided fields change (optimistic-locked). opt_in_status and primary_voice_id are NOT accepted here --- those are platform-owned and set by the opt-in flow.
Display title of the podcast.
The Daily TechURL of the podcast's RSS feed.
https://feeds.example.com/the-daily-tech.xmlShort description of the podcast.
A daily look at the latest in technology.URL of the podcast's public website or landing page.
https://example.com/podcasts/the-daily-techURL of the podcast's cover artwork image.
https://cdn.example.com/the-daily-tech/cover.jpgPrimary language of the podcast as an ISO 639-1 code.
enContent categories the podcast belongs to.
primary_contact objectnullable
The primary contact for this podcast.
Email address of the contact (required)
ops@example.comFirst name of the contact (required)
JaneLast name of the contact (required)
DoeOptional free-form role or title of the contact
Head of Partnershipscontacts object[]nullable
Additional contacts associated with this podcast.
Email address of the contact (required)
ops@example.comFirst name of the contact (required)
JaneLast name of the contact (required)
DoeOptional free-form role or title of the contact
Head of Partnershipsexternal_ids objectnullable
External system identifiers keyed by system name.
Estimated number of episode downloads per month.
125000{
"title": "The Daily Tech",
"feed_url": "https://feeds.example.com/the-daily-tech.xml",
"description": "A daily look at the latest in technology.",
"link": "https://example.com/podcasts/the-daily-tech",
"image_url": "https://cdn.example.com/the-daily-tech/cover.jpg",
"language": "en",
"categories": [
"string"
],
"primary_contact": {
"email": "ops@example.com",
"first_name": "Jane",
"last_name": "Doe",
"role": "Head of Partnerships"
},
"contacts": [
{
"email": "ops@example.com",
"first_name": "Jane",
"last_name": "Doe",
"role": "Head of Partnerships"
}
],
"external_ids": {},
"downloads_per_month": 125000
}