Skip to main content

PageResponse_NetworkDto_

A single page of results. nextCursor is an opaque token to pass back as ?cursor= to fetch the following page; null means there are no more results.

items object[]required
  • Array [
  • idstring

    Unique identifier of the network

    Example: 7Hb2Kp9QvL3mNx0R8tZ4
    created_atdate-time

    When the network was created

    Example: 2026-01-15T09:30:00Z
    updated_atdate-time

    When the network was last updated

    Example: 2026-01-15T09:30:00Z
    namestring

    Display name of the network

    Example: Acme Podcast Network
    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
    emailstring

    Primary email address for the network

    Example: ops@example.com
    default_email_languagestringnullable

    Default language code used for emails sent to the network

    Example: en
    primary_contact object

    Primary business contact for the network

    emailstring

    Email address of the contact

    Example: ops@example.com
    first_namestring

    First name of the contact

    Example: Jane
    last_namestring

    Last name of the contact

    Example: Doe
    rolestringnullable

    Optional free-form role or title of the contact

    Example: Head of Partnerships
    contacts object[]

    Additional business contacts for the network

  • Array [
  • emailstring

    Email address of the contact

    Example: ops@example.com
    first_namestring

    First name of the contact

    Example: Jane
    last_namestring

    Last name of the contact

    Example: Doe
    rolestringnullable

    Optional free-form role or title of the contact

    Example: Head of Partnerships
  • ]
  • ]
  • next_cursorstringnullable
    PageResponse_NetworkDto_
    {
    "items": [
    {
    "id": "7Hb2Kp9QvL3mNx0R8tZ4",
    "created_at": "2026-01-15T09:30:00Z",
    "updated_at": "2026-01-15T09:30:00Z",
    "name": "Acme Podcast Network",
    "description": "A network of independent technology podcasts",
    "website": "https://example.com",
    "email": "ops@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"
    }
    ]
    }
    ],
    "next_cursor": "string"
    }