Skip to main content

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.

titlestringnullable

Display title of the podcast.

Example: The Daily Tech
feed_urlstringnullable

URL of the podcast's RSS feed.

Example: https://feeds.example.com/the-daily-tech.xml
descriptionstringnullable

Short description of the podcast.

Example: A daily look at the latest in technology.
linkstringnullable

URL of the podcast's public website or landing page.

Example: https://example.com/podcasts/the-daily-tech
image_urlstringnullable

URL of the podcast's cover artwork image.

Example: https://cdn.example.com/the-daily-tech/cover.jpg
languagestringnullable

Primary language of the podcast as an ISO 639-1 code.

Example: en
categoriesstring[]nullable

Content categories the podcast belongs to.

primary_contact objectnullable

The primary contact for this podcast.

emailstringnullable

Email address of the contact (required)

Example: ops@example.com
first_namestringnullable

First name of the contact (required)

Example: Jane
last_namestringnullable

Last name of the contact (required)

Example: Doe
rolestringnullable

Optional free-form role or title of the contact

Example: Head of Partnerships
contacts object[]nullable

Additional contacts associated with this podcast.

  • Array [
  • emailstringnullable

    Email address of the contact (required)

    Example: ops@example.com
    first_namestringnullable

    First name of the contact (required)

    Example: Jane
    last_namestringnullable

    Last name of the contact (required)

    Example: Doe
    rolestringnullable

    Optional free-form role or title of the contact

    Example: Head of Partnerships
  • ]
  • external_ids objectnullable

    External system identifiers keyed by system name.

    property name*string
    downloads_per_monthint64nullable

    Estimated number of episode downloads per month.

    Example: 125000
    PodcastUpdateRequest
    {
    "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
    }