Samsung DSP

The Samsung DSP Connector provides automated access to the Samsung DSP Reporting Service API.

Prerequisites

Username
The username associated with your Samsung DSP account
API Key
See “Generating the API Key” in the Samsung API Documentation

Scheduling

The Samsung DSP 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.

This connector allows repulls and lookbacks.

Parameters

dimensions string list
required
See the Samsung API documentation for a list of possible dimensions.
filter string
optional
SQL expression that represents a filter that will be inserted in a WHERE clause. Atoms should reference dimensions. For more details, see the Samsung API documentation.
metrics string list
required
See the Samsung API documentation for a list of possible dimensions.
metrics_filter string list
optional
SQL expression that represents a filter that will be inserted in a HAVING clause. Atoms should reference metrics. For more details, see the Samsung API documentation.
report_timezone string
optional
Time zone name, as in the tz database. e.g. Africa/Abidjan or Europe/Paris.

Sample Switchboard Script

download t from {
    type: "samsung_dsp:trader_delivery_all";
    key: "samsung_dsp_key";
    dimensions: ["day","advertiser_name","campaign_name","campaign_id"];
    metrics: ["billable_impressions"];

    report_timezone: "America/Los_Angeles";  // If not set the default is UTC
    filter: "campaign_id = 52";
    metrics_filter: "(billable_impressions <> 0)";
} using { c1: integer; };