Skip to main content

NetworkUpdateRequest

Request body to update a network's mutable business fields. Every field is optional; only provided fields change (optimistic-locked). Internal fields are never accepted.

namestringnullable

New display name of the network

Example: Acme Podcast Network
emailstringnullable

New primary email address for the network

Example: ops@example.com
descriptionstringnullable

New free-form description of the network

Example: A network of independent technology podcasts
websitestringnullable

New public website for the network

Example: https://example.com
default_email_languagestringnullable

New default language code used for emails sent to the network

Example: en
primary_contact objectnullable

New primary business contact for the network

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

New list of additional business contacts for the network

  • 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
  • ]
  • NetworkUpdateRequest
    {
    "name": "Acme Podcast Network",
    "email": "ops@example.com",
    "description": "A network of independent technology podcasts",
    "website": "https://example.com",
    "default_email_language": "en",
    "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"
    }
    ]
    }