Nativo
The Switchboard Nativo Connector provides automated ingestion of auction, deal, demand, and marketplace reports.
Prerequisites
To configure access to the Nativo Connector, you need:
- API Token
- API Secret
To obtain the API Key and Secret, contact your Nativo Account Manager.
Scheduling
The Nativo 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 nativo_marketplace from {
type: "nativo";
key: "nativo_key";
report: "marketplace";
metrics: ["impressions", "publisher_revenue"];
breakdowns: [
"ad_type",
"advertiser",
"country",
"device_type",
"marketplace",
"placement",
"publication"
];
} using {
date: datetime;
"ad type": {
"id": integer;
"name": string;
};
"advertiser": {
"id": integer;
"name": string;
};
"country": {
"id": integer;
"name": string;
};
"device type": {
"id": integer;
"name": string;
};
"marketplace": {
"id": integer;
"name": string;
};
"placement": {
"id": integer;
"name": string;
};
"publication": {
"id": integer;
"name": string;
};
"publisher revenue": float;
impressions: integer;
};