YieldMo API

The YieldMo API connector provides automated access to the Yieldmo Looker API.

Prerequisites

The YieldMo API Advertising connector requires an Yieldmo Looker API credentials

Scheduling

The YieldMo API 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.

Using Query ID

Parameters

query_id string
required
Runs a previously saved query

Sample Switchboard Script

download t from {
            type: "yieldmo";
            key: "yieldmo";
            query_id: "12345678";
        } using { * };

Using Dashboard ID

Parameters

dashboard_id string list
required
Returns the full details of the identified dashboard object. If a dashboard_id is used, it will look for the first query_id associated with it.

Sample Switchboard Script

download t from {
            type: "yieldmo";
            key: "yieldmo";
            dashboard_id: "some_dashboard";
        } using { * };