AppLovin

The Switchboard AppLovin connector automates access to publisher and advertiser reports.

Prerequisites

To configure access to the AppLovin connector, you need:

  • API Key

To obtain the API Key, contact your AppLovin connector Account Manager.

Scheduling

The AppLovin Connector can be scheduled to ingest data once per day at a user-defined hour and timezone.

  • To configure this schedule, use the delay_hours parameter.
  • By default, the connector will run once at 6am PT.

Report Types

The following report types are available:

Publisher Report

Switchboard Script Syntax

import applovin_publisher_report from {
   type: "applovin";
   key: "applovin_key";
   report_type: "publisher";
   columns: ["impressions", "clicks"];
   } using {
           day: date;
           impressions: integer;
           clicks: integer;
   };

Parameters

Parameter

Description

Required/Optional?

report_type

publisher

Required

columns

A list of requested columns. 

For column descriptions, see AppLovin Basic Reporting API document.

At least one value is required.

Advertiser Report

Switchboard Script Syntax

import applovin_advertiser_report from {
   type: "applovin";
   key: "applovin_key";
   report_type: "advertiser";
   columns: ["impressions", "clicks"];
   } using {
           day: date;
           impressions: integer;
           clicks: integer;
   };

Parameters

Parameter

Description

Required/Optional?

report_type

publisher

Required

columns

A list of requested columns. 

For column descriptions, see AppLovin Basic Reporting API document.

At least one value is required