Vungle
The Switchboard Vungle connector provides automated ingestion of publisher reports.
Prerequisites
To configure access to the Vungle Connector, you need:
- API Key
To obtain an API Key, contact your Vungle Account Manager.
Scheduling
The Vungle 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.
Sample Switchboard Script
import vungle_publisher_report from {
type: "vungle:report";
key: "vungle_key";
dimensions: [
"platform",
"application",
"placement",
"incentivized",
"adType",
"adSize"];
aggregates: [
"impressions",
"revenue"];
} using {
"date": datetime;
"application id": string;
"application name": string;
"platform": string;
"incentivized": string;
"placement id": string;
"adType": string;
"placement name": string;
"placement reference id": string;
"adSize": string;
"revenue": float;
"impressions": integer;
};
Parameters
Parameter | Description | Required/Optional? |
---|---|---|
api_version | The Vungle API version to use. Defaults to 1 |
Optional |
dimensions | A string list containing one or more of the following options: platform application placement country incentivized adType adSize |
Required |
aggregates | A string list containing one or more of the following options: impressions views completes clicks revenue ecpm |
Required |