Mountain

The Mountain (MNTN) connector provides automated access to the Mountain API

Prerequisites

The Mountain connector requires you create a Mountain Key in the Key Editor with the following value:

API Key
The Mountain API key is available through the MNTN user interface.

Scheduling

The Mountain 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.

Supports repull_days

Parameters

columns string list
required
a list of table.column strings corresponding to column names in an “info” (e.g., CampaignInfo), graph, or details table. See the example below.

Sample SBS Script

download t from {
            type: "mountain:report";
            key: "mountain";
            columns: ["CampaignInfo.id", "CampaignInfo.name", "ChannelInfo.id", "ChannelInfo.name", "graph.spend", "graph.impressions", "graph.day", "graph.CompletedViews", "graph.Visits", "graph.conversions", "NetworkInfo.name", "CityInfo.name", "graph.UsersReached", "graph.Frequency", "graph.NewUsersReached", "graph.ExistingUsersReached"];
} using { * };