Outbrain

The Switchboard Outbrain connector provides automated ingestion of revenue and impression reports.

Prerequisites

To configure access to the Outbrain connector, you’ll need:

  • The Email Address and Password you use to access your Outbrain account.

Scheduling

The Outbrain connector can be scheduled to ingest data once per day at a user-defined hour and timezone. By default, the connector will run once at 6am PT. See Daily Scheduling for more information.

Parameters

Parameter Description Required/Optional?
breakdowns A list of requested dimensions. Allowed values are:

day
doc
country
month
platform
referrer
partnerApp
section
widget
Required

Sample Switchboard Script

import outbrain from {
    type: "outbrain";
    key: "outbrain_key";
    breakdowns: [
    	"day",
    	"widget",
    	"referrer",
    	"platform"];
} using {
    day: {
        value: datetime("yyyyMMdd");
    };
    organicClicks: {
        value: integer;
    };
    organicListings: {
        value: integer;
    };
    paidClicks: {
        value: integer;
    };
    paidCtrByPvs: {
        value: float;
    };
    paidPvs: {
        value: integer;
    };
    paidReqs: {
        value: integer;
    };
    publisher: {
        id: integer;
        name: string;
    };
    platform: {
        id: string;
        value: string;
    };
    referrer: {
        value: string;
    };
    reqsPaidCtr: {
        value: float;
    };
    reqsRpm: {
        value: float;
    };
    reqsTotalCtr: {
        value: float;
    };
    revenue: {
        value: float;
    };
    rpmByPvs: {
        value: float;
    };
    totalClicks: {
        value: integer;
    };
    totalCtrByPvs: {
        value: float;
    };
    totalPvs: {
        value: integer;
    };
    totalReqs: {
        value: integer;
    };
    widget: {
        id: string;
        value: string;
    };
};