PodcastCreateRequest
Request body to create a podcast. The network comes from the path. title, feed_url and primary_contact are required. Platform-owned fields (opt_in_status, primary_voice_id, lifecycle status, version, info) are never accepted --- the opt-in flow owns them. RSS auto-import from feed_url is a deferred follow-up.
Display title of the podcast. Required.
The Daily TechURL of the podcast's RSS feed. Required.
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. Required.
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
}