Boostr Connector

The Switchboard Boostr connector provides automated ingestion from the Boostr API, an order management system for media companies.

Prerequisites

username
your login to Boostr
password
your login to Boostr

Scheduling

The Boostr Ads 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.

Report Types

Boostr Deals Report

The type boostr:deals_bundle connects to deals and deal items

Switchboard Script Syntax

download bundle boostr {
    type: "boostr:deals_bundle";
    key: "boostr_key";
    table deals using {*};
    table deal_products using {*};
    // allows daily schedule
};

Boostr iOS Report

The type boostr:ios_bundle connects to ios, ios line items and ios display line items

Switchboard Script Syntax

download bundle boostr {
    type: "boostr:ios_bundle";
    key: "boostr_key";
    table ios using {*};
    table ios_line_items using {*};
    table ios_display_line_items using {*};
    // allows daily schedule
};

Boostr Media Plans Report

The type boostr:media_plans_bundle connects to media plans and media plans items

Switchboard Script Syntax

The type boostr:deals_bundle connects to deals and deal items

download bundle boostr {
    type: "boostr:media_plans_bundle";
    key: "boostr_key";
    table media_plans using {*};
    table media_plan_items using {*};
    // allows daily schedule
};

Boostr PMP Report

The type boostr:media_plans_bundle connects to pmps, pmp items and pmp item daily actuals

Switchboard Script Syntax

download bundle boostr {
    type: "boostr:pmps_bundle";
    key: "boostr_key";
    table pmps using {*};
    table pmps_items using {*};
    table pmp_item_daily_actuals using {*};
    // allows daily schedule
};

Boostr Products Report

The type boostr:products connects to products endpoint

Switchboard Script Syntax

download boostr from {
    type: "boostr:products";
    key: "boostr_key";
} using {*};

Boostr Users Report

The type boostr:users connects to the users endpoint

Switchboard Script Syntax

download boostr from {
            type: "boostr:users";
            key: "boostr_key";
} using {*};

Boostr Line Items Report

The type boostr:line_items connects to the /api/ios/{io_id}/line_items endpoint

Switchboard Script Syntax

download boostr from {
            type: "boostr:line_items";
            key: "boostr_key";
} using {*};

Boostr Display Line Items Report

The type boostr:display_line_items connects to to the /api/ios/{io_id}/display_line_items endpoint

Switchboard Script Syntax

download boostr from {
            type: "boostr:display_line_items";
            key: "boostr_key";
} using {*};