Skip to main content

NetworkCreateRequest

Request body to create a network. Creating a network is a privileged operation (super-user only). name, email and primary_contact are required. Internal fields are never accepted.

namestringnullable

Display name of the network (required)

Example: Acme Podcast Network
emailstringnullable

Primary email address for the network (required)

Example: ops@example.com
descriptionstringnullable

Optional free-form description of the network

Example: A network of independent technology podcasts
websitestringnullable

Optional public website for the network

Example: https://example.com
default_email_languagestringnullable

Default language code used for emails sent to the network

Example: en
primary_contact objectnullable

Primary business contact for the network (required)

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 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
  • ]
  • NetworkCreateRequest
    {
    "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"
    }
    ]
    }