Sovrn Advertising

The Sovrn Advertising connector provides automated access to the Sovrn Advertising Reports API.

Prerequisites

The Sovrn Advertising connector requires an API Key when you create a Sovrn Key in the Key Manager.

Scheduling

The Sovrn Advertising connector can be scheduled to ingest data on an hourly basis.

See Hourly Scheduling for more information.

Account Report

Parameters

dimensions string list
required
valid values include: endpoint zoneId zoneSize zoneName country
domains string list
optional
obtained through the Sovrn UI
metrics string list
required
valid values include: requests requestsWithBid impressions publisherRevenu fillRate cpm
publisher_id numeric
required
obtained through the Sovrn UI
report string
required
Use the value “account” for the account report

Bid Report

Parameters

dimensions string list
required
valid values include: endpoint demandPartnerId seatId dealId advertiser country
domains string list
optional
obtained through the Sovrn UI
metrics string list
required
valid values include: requests requestsWithBid impressions publisherRevenue fillRate cpm
publisher_id numeric
required
obtained through the Sovrn UI
report string
required
Use the value “bid” for the bid report

Sample Switchboard Script

download t from {
    type: "sovrn_advertising:report";
    key: "sovrn_advertising";
    
    // Required
    metrics: ["requests"];
    dimensions: ["endpoint"];
    report: "account";
    publisher_id: 341952;
    
    // Optional
    domains: ["domain.com"];


    // Allows daily schedule     
} using {
    *
};