Inmobi

The Inmobi Connector provides automated access to the Inmobi Reporting API.

For further details please consult the Inmobi Reporting API documentation

Prerequisites

In the Key Manager, add a Key with a “Credential Type” of Inmobi

The Inmobi connector requires:

  • Username

  • SecretKey

Scheduling

The Inmobi 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

ad_impressions_op list of strings
optional
allowed values: = <><=>=<>
ad_impressions long
optional
Filter by impressions rendered (e.g. 100), see: ad_impressions_op
ad_unit_type string
optional
Filter by ad unit type
app_id: long
optional
Filter by the Unique identifier for the app (e.g. 14999472554)
app_name long
optional
Filter by app name (e.g. “Horoscoper”)
country string
optional
Filter by target country (e.,g, “South Korea”)
earnings_op list of strings
optional
allowed values: = <><=>=<>
earnings long
optional
Filter by total earnings (e.g. 100), see: earnings_op
group_by list of strings
optional
allowed values: country requestSlot platform date account inmobiAppId placement adUnitType
metrics list of strings
required
allowed values: adRequests adImpressions clicks earnings servedImpressions costPerMille fillRate
order_by: string
optional
order_type list of strings
optional
allowed values: asc desc
placement_id long
optional
Filter by the unique identifier for a placement under the app (e.g. 1478496451110)
placement_name string
optional
Filter by placement name (e.g. “Default Interstitial Placement”)
platform string
optional
Filter by operating system (e.g. IOS, ANDROID)

Sample Switchboard Script

download t from {
    type: "inmobi:reports";
    key: "<key name>";
    group_by: ["country","date","platform"]; // optional
    metrics: ["adRequests","clicks"]; // required
    order_by: "platform"; // optional
    order_type: "desc"; // optional
    country: "South Korea"; // optional
    app_id: "<app id>"; // optional
    app_name: "<app name>"; // optional
    placement_id: "<placement id>"; // optional
    placement_name: "<placement name>"; // optional 
    platform: "IOS";// optional
    ad_unit_type: "<ad_unit_type>";// optional
    earnings: 100;// optional
    earnings_op: ">=";// optional
    ad_impressions: 1;// optional
    ad_impressions_op: ">=";// optional
    
    // allow daily schedule
} using {*};