NetworkDto
A network (organization) that owns podcasts and campaigns.
idstring
Unique identifier of the network
Example:
7Hb2Kp9QvL3mNx0R8tZ4created_atdate-time
When the network was created
Example:
2026-01-15T09:30:00Zupdated_atdate-time
When the network was last updated
Example:
2026-01-15T09:30:00Znamestring
Display name of the network
Example:
Acme Podcast Networkdescriptionstringnullable
Optional free-form description of the network
Example:
A network of independent technology podcastswebsitestringnullable
Optional public website for the network
Example:
https://example.comemailstring
Primary email address for the network
Example:
ops@example.comdefault_email_languagestringnullable
Default language code used for emails sent to the network
Example:
enprimary_contact object
Primary business contact for the network
emailstring
Email address of the contact
Example:
ops@example.comfirst_namestring
First name of the contact
Example:
Janelast_namestring
Last name of the contact
Example:
Doerolestringnullable
Optional free-form role or title of the contact
Example:
Head of Partnershipscontacts object[]
Additional business contacts for the network
Array [
emailstring
Email address of the contact
Example:
ops@example.comfirst_namestring
First name of the contact
Example:
Janelast_namestring
Last name of the contact
Example:
Doerolestringnullable
Optional free-form role or title of the contact
Example:
Head of Partnerships]
NetworkDto
{
"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"
}
]
}