FMTC

The FMTC connector automates automates access to the FMTC API from their Deal Feed and their Merchant Feed

Prerequisites

To configure access to the FMTC connector, you need create a key in the Key Editor with the following property:

API Key
Contact FMTC to obtain your unique API Key

Scheduling

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

lookback_days numeric
optional
number of days back to retrieve data
lookback_months numeric
optional
number of months back to retrieve data
lookback_years numeric
optional
number of years back to retrieve data

Sample Switchboard Script

download bundle t {
      type: "fmtc:deals_only";
      key: "fmtc";
      lookback_years: 1;     // Allows lookback_days, lookback_months and lookback_years
      table deals using {*};
      table changes using {*};
};
download t from {
      type: "fmtc:merchants";
      key: "fmtc";
      lookback_years: 1;      // Allows lookback_days, lookback_months and lookback_years
} using{*};