← Discord + Google Ad Manager integrations

Create Report with Google Ad Manager API on New Message (Instant) from Discord API

Pipedream makes it easy to connect APIs for Google Ad Manager, Discord and 2,400+ other apps remarkably fast.

Trigger workflow on
New Message (Instant) from the Discord API
Next, do this
Create Report with the Google Ad Manager API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Discord trigger and Google Ad Manager action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Message (Instant) trigger
    1. Connect your Discord account
    2. Configure Channels
    3. Configure discordApphook
  3. Configure the Create Report action
    1. Connect your Google Ad Manager account
    2. Select a Parent Network
    3. Configure Name
    4. Select a Visibility
    5. Optional- Configure Display Name
    6. Optional- Configure Schedule Options
    7. Select one or more Dimensions
    8. Select one or more Metrics
    9. Optional- Configure Filters
    10. Optional- Configure Time Zone
    11. Optional- Configure Currency Code
    12. Optional- Configure Custom Dimension Key IDs
    13. Optional- Configure Line Item Custom Field IDs
    14. Optional- Configure Order Custom Field IDs
    15. Optional- Configure Creative Custom Field IDs
    16. Select a Report Type
    17. Optional- Select a Time Period Column
    18. Optional- Configure Flags
    19. Optional- Configure Sorts
    20. Select a Date Range Type
    21. Optional- Select a Comparison Date Range Type
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event for each message posted to one or more channels in a Discord server
Version:1.0.3
Key:discord-new-message

Discord Overview

The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.

Trigger Code

import discord from "../../discord.app.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  type: "source",
  key: "discord-new-message",
  name: "New Message (Instant)",
  description: "Emit new event for each message posted to one or more channels in a Discord server",
  version: "1.0.3",

  dedupe: "unique",
  props: {
    discord,
    channels: {
      type: "$.discord.channel[]",
      appProp: "discord",
      label: "Channels",
      description: "Select the channel(s) you'd like to be notified for",
    },
    // eslint-disable-next-line pipedream/props-label,pipedream/props-description
    discordApphook: {
      type: "$.interface.apphook",
      appProp: "discord",
      async eventNames() {
        return this.channels || [];
      },
    },
  },
  async run(event) {
    if (event.guildID != this.discord.$auth.guild_id) {
      return;
    }
    this.$emit(event, {
      id: event.id,
    });
  },
  sampleEmit,
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
DiscorddiscordappThis component uses the Discord app.
Channelschannels$.discord.channel[]

Select the channel(s) you'd like to be notified for

discordApphook$.interface.apphook

Trigger Authentication

Discord uses OAuth authentication. When you connect your Discord account, Pipedream will open a popup window where you can sign into Discord and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Discord API.

Pipedream requests the following authorization scopes when you connect your account:

botemailidentifyguilds

About Discord

Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.

Action

Description:Create a report in Google Ad Manager. [See the documentation](https://developers.google.com/ad-manager/api/beta/reference/rest/v1/networks.reports/create)
Version:0.0.1
Key:google_ad_manager-create-report

Action Code

import app from "../../google_ad_manager.app.mjs";
import dimensions from "../../common/dimensions.mjs";
import metrics from "../../common/metrics.mjs";
import relativeDateRanges from "../../common/relative-date-ranges.mjs";
import utils from "../../common/utils.mjs";
import constants from "../../common/constants.mjs";

export default {
  key: "google_ad_manager-create-report",
  name: "Create Report",
  description: "Create a report in Google Ad Manager. [See the documentation](https://developers.google.com/ad-manager/api/beta/reference/rest/v1/networks.reports/create)",
  version: "0.0.1",
  type: "action",
  props: {
    app,
    parent: {
      label: "Parent Network",
      description: "The parent resource where this Report will be created. Format: `networks/{networkCode}`.",
      propDefinition: [
        app,
        "network",
      ],
    },
    name: {
      label: "Name",
      description: "Identifier. The resource name of the report. Report resource names have the form: `networks/{networkCode}/reports/{reportId}`.",
      type: "string",
    },
    visibility: {
      type: "string",
      label: "Visibility",
      description: "The visibility of the report.",
      options: constants.VISIBILITY_OPTIONS,
    },
    displayName: {
      type: "string",
      label: "Display Name",
      description: "The display name of the report.",
      optional: true,
    },
    scheduleOptions: {
      type: "object",
      label: "Schedule Options",
      description: "The options for a scheduled report. [See the documentation](https://developers.google.com/ad-manager/api/beta/reference/rest/v1/networks.reports#ScheduleOptions).",
      optional: true,
    },
    dimensions: {
      type: "string[]",
      label: "Dimensions",
      description: "The list of dimensions to report on. If empty, the report will have no dimensions, and any metrics will be totals.",
      options: Object.values(dimensions),
    },
    metrics: {
      type: "string[]",
      label: "Metrics",
      description: "The list of metrics to report on. If empty, the report will have no metrics.",
      options: Object.values(metrics),
    },
    filters: {
      type: "string[]",
      label: "Filters",
      description: "The filters for this report. Each row must be formatted as a JSON object. [See the documentation](https://developers.google.com/ad-manager/api/beta/reference/rest/v1/networks.reports#filter).",
      optional: true,
    },
    timeZone: {
      type: "string",
      label: "Time Zone",
      description: "The time zone the date range is defined in for this report. Defaults to publisher's time zone if not specified. Time zone in IANA format. Acceptable values depend on the report type. Publisher time zone is always accepted. Use `America/Los_Angeles` for pacific time, or `Etc/UTC` for UTC.",
      optional: true,
    },
    currencyCode: {
      type: "string",
      label: "Currency Code",
      description: "The ISO 4217 currency code for this report. Defaults to publisher currency code if not specified.",
      optional: true,
    },
    customDimensionKeyIds: {
      type: "string[]",
      label: "Custom Dimension Key IDs",
      description: "Custom Dimension keys that represent `CUSTOM_DIMENSION_*` dimensions. The index of this repeated field corresponds to the index on each dimension. For example, `customDimensionKeyIds[0]` describes `CUSTOM_DIMENSION_0_VALUE_ID` and `CUSTOM_DIMENSION_0_VALUE`.",
      optional: true,
    },
    lineItemCustomFieldIds: {
      type: "string[]",
      label: "Line Item Custom Field IDs",
      description: "Custom field IDs that represent `LINE_ITEM_CUSTOM_FIELD_*` dimensions. The index of this repeated field corresponds to the index on each dimension. For example, `lineItemCustomFieldIds[0]` describes `LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID` and `LINE_ITEM_CUSTOM_FIELD_0_VALUE`.",
      optional: true,
    },
    orderCustomFieldIds: {
      type: "string[]",
      label: "Order Custom Field IDs",
      description: "Custom field IDs that represent `ORDER_CUSTOM_FIELD_*` dimensions. The index of this repeated field corresponds to the index on each dimension. For example, `orderCustomFieldIds[0]` describes `ORDER_CUSTOM_FIELD_0_OPTION_ID` and `ORDER_CUSTOM_FIELD_0_VALUE`.",
      optional: true,
    },
    creativeCustomFieldIds: {
      type: "string[]",
      label: "Creative Custom Field IDs",
      description: "Custom field IDs that represent `CREATIVE_CUSTOM_FIELD_*` dimensions. The index of this repeated field corresponds to the index on each dimension. For example, `creativeCustomFieldIds[0]` describes `CREATIVE_CUSTOM_FIELD_0_OPTION_ID` and `CREATIVE_CUSTOM_FIELD_0_VALUE`.",
      optional: true,
    },
    reportType: {
      type: "string",
      label: "Report Type",
      description: "The type of this report.",
      options: constants.REPORT_TYPE_OPTIONS,
    },
    timePeriodColumn: {
      type: "string",
      label: "Time Period Column",
      description: "Include a time period column to introduce comparison columns in the report for each generated period. For example, set to `QUARTERS` here to have a column for each quarter present in the primary date range. If `PREVIOUS PERIOD` is specified in **Comparison Date Range**, then each quarter column will also include comparison values for its relative previous quarter.",
      optional: true,
      options: constants.TIME_PERIOD_COLUMN_OPTIONS,
    },
    flags: {
      type: "string[]",
      label: "Flags",
      description: "List of flags for this report. Used to flag rows in a result set based on a set of defined filters. Each row must be formatted as a JSON object. [See the documentation](https://developers.google.com/ad-manager/api/beta/reference/rest/v1/networks.reports#Flag).",
      optional: true,
    },
    sorts: {
      type: "string[]",
      label: "Sorts",
      description: "Default sorts to apply to this report. Each row must be formatted as a JSON object. [See the documentation](https://developers.google.com/ad-manager/api/beta/reference/rest/v1/networks.reports#Sort).",
      optional: true,
    },
    dateRange: {
      type: "string",
      label: "Date Range Type",
      description: "The date range of this report.",
      options: Object.values(constants.DATE_RANGE_TYPE),
      reloadProps: true,
    },
    comparisonDateRange: {
      type: "string",
      label: "Comparison Date Range Type",
      description: "The comparison date range of this report. If unspecified, the report will not have any comparison metrics.",
      optional: true,
      options: Object.values(constants.DATE_RANGE_TYPE),
      reloadProps: true,
    },
  },
  methods: {
    createReport({
      parent, ...args
    } = {}) {
      return this.app.post({
        path: `/${parent}/reports`,
        ...args,
      });
    },
    getComparisonDateRangeProps() {
      const { comparisonDateRange } = this;
      if (comparisonDateRange === constants.DATE_RANGE_TYPE.FIXED) {
        return {
          comparisonStartDateYear: {
            type: "integer",
            label: "Comparison Start Date Year",
            description: "Year of the date. Must be from `1` to `9999`, or `0` to specify a date without a year.",
          },
          comparisonStartDateMonth: {
            type: "integer",
            label: "Comparison Start Date Month",
            description: "Month of a year. Must be from `1` to `12`, or `0` to specify a year without a month and day.",
          },
          comparisonStartDateDay: {
            type: "integer",
            label: "Comparison Start Date Day",
            description: "Day of a month. Must be from `1` to `31` and valid for the year and month, or `0` to specify a year by itself or a year and month where the day isn't significant.",
          },
          comparisonEndDateYear: {
            type: "integer",
            label: "Comparison End Date Year",
            description: "Year of the date. Must be from `1` to `9999`, or `0` to specify a date without a year.",
          },
          comparisonEndDateMonth: {
            type: "integer",
            label: "Comparison End Date Month",
            description: "Month of a year. Must be from `1` to `12`, or `0` to specify a year without a month and day.",
          },
          comparisonEndDateDay: {
            type: "integer",
            label: "Comparison End Date Day",
            description: "Day of a month. Must be from `1` to `31` and valid for the year and month, or `0` to specify a year by itself or a year and month where the day isn't significant.",
          },
        };
      } else if (comparisonDateRange === constants.DATE_RANGE_TYPE.RELATIVE) {
        return {
          comparisonRelative: {
            type: "string",
            label: "Comparison Relative Date Range",
            description: "The relative date range of this report.",
            options: Object.values(relativeDateRanges),
          },
        };
      }
    },
    getDateRangeValues() {
      const {
        dateRange,
        relative,
        startDateYear,
        startDateMonth,
        startDateDay,
        endDateYear,
        endDateMonth,
        endDateDay,
      } = this;

      if (dateRange === constants.DATE_RANGE_TYPE.FIXED) {
        return {
          dateRange: {
            fixed: {
              startDate: {
                year: startDateYear,
                month: startDateMonth,
                day: startDateDay,
              },
              endDate: {
                year: endDateYear,
                month: endDateMonth,
                day: endDateDay,
              },
            },
          },
        };
      }
      return {
        dateRange: {
          relative,
        },
      };
    },
    getComparisonDateRangeValues() {
      const {
        comparisonDateRange,
        comparisonRelative,
        comparisonStartDateYear,
        comparisonStartDateMonth,
        comparisonStartDateDay,
        comparisonEndDateYear,
        comparisonEndDateMonth,
        comparisonEndDateDay,
      } = this;

      if (comparisonDateRange === constants.DATE_RANGE_TYPE.FIXED) {
        return {
          comparisonDateRange: {
            fixed: {
              startDate: {
                year: comparisonStartDateYear,
                month: comparisonStartDateMonth,
                day: comparisonStartDateDay,
              },
              endDate: {
                year: comparisonEndDateYear,
                month: comparisonEndDateMonth,
                day: comparisonEndDateDay,
              },
            },
          },
        };
      } else if (comparisonDateRange === constants.DATE_RANGE_TYPE.RELATIVE) {
        return {
          comparisonDateRange: {
            relative: comparisonRelative,
          },
        };
      }
    },
  },
  additionalProps() {
    const { dateRange } = this;

    if (dateRange === "fixed") {
      return {
        startDateYear: {
          type: "integer",
          label: "Start Date Year",
          description: "Year of the date. Must be from `1` to `9999`, or `0` to specify a date without a year.",
        },
        startDateMonth: {
          type: "integer",
          label: "Start Date Month",
          description: "Month of a year. Must be from `1` to `12`, or `0` to specify a year without a month and day.",
        },
        startDateDay: {
          type: "integer",
          label: "Start Date Day",
          description: "Day of a month. Must be from `1` to `31` and valid for the year and month, or `0` to specify a year by itself or a year and month where the day isn't significant.",
        },
        endDateYear: {
          type: "integer",
          label: "End Date Year",
          description: "Year of the date. Must be from `1` to `9999`, or `0` to specify a date without a year.",
        },
        endDateMonth: {
          type: "integer",
          label: "End Date Month",
          description: "Month of a year. Must be from `1` to `12`, or `0` to specify a year without a month and day.",
        },
        endDateDay: {
          type: "integer",
          label: "End Date Day",
          description: "Day of a month. Must be from `1` to `31` and valid for the year and month, or `0` to specify a year by itself or a year and month where the day isn't significant.",
        },
        ...this.getComparisonDateRangeProps(),
      };
    }

    return {
      relative: {
        type: "string",
        label: "Relative Date Range",
        description: "The relative date range of this report.",
        options: Object.values(relativeDateRanges),
      },
      ...this.getComparisonDateRangeProps(),
    };
  },
  async run({ $ }) {
    const {
      getDateRangeValues,
      getComparisonDateRangeValues,
      createReport,
      parent,
      name,
      visibility,
      displayName,
      scheduleOptions,
      dimensions,
      metrics,
      filters,
      timeZone,
      currencyCode,
      customDimensionKeyIds,
      lineItemCustomFieldIds,
      orderCustomFieldIds,
      creativeCustomFieldIds,
      reportType,
      timePeriodColumn,
      flags,
      sorts,
    } = this;

    const response = await createReport({
      $,
      parent,
      data: {
        name,
        visibility,
        displayName,
        scheduleOptions,
        reportDefinition: {
          dimensions,
          metrics,
          filters: utils.parseArray(filters),
          timeZone,
          currencyCode,
          customDimensionKeyIds,
          lineItemCustomFieldIds,
          orderCustomFieldIds,
          creativeCustomFieldIds,
          reportType,
          timePeriodColumn,
          flags: utils.parseArray(flags),
          sorts: utils.parseArray(sorts),
          ...getDateRangeValues(),
          ...getComparisonDateRangeValues(),
        },
      },
    });

    $.export("$summary", `Successfully created report in network ${parent}`);
    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
Google Ad ManagerappappThis component uses the Google Ad Manager app.
Parent NetworkparentstringSelect a value from the drop down menu.
Namenamestring

Identifier. The resource name of the report. Report resource names have the form: networks/{networkCode}/reports/{reportId}.

VisibilityvisibilitystringSelect a value from the drop down menu:HIDDENDRAFTSAVED
Display NamedisplayNamestring

The display name of the report.

Schedule OptionsscheduleOptionsobject

The options for a scheduled report. See the documentation.

Dimensionsdimensionsstring[]Select a value from the drop down menu:{ "label": "Dimension Unspecified", "value": "DIMENSION_UNSPECIFIED" }{ "label": "Advertiser Domain Name", "value": "ADVERTISER_DOMAIN_NAME" }{ "label": "Advertiser External ID", "value": "ADVERTISER_EXTERNAL_ID" }{ "label": "Advertiser ID", "value": "ADVERTISER_ID" }{ "label": "Advertiser Labels", "value": "ADVERTISER_LABELS" }{ "label": "Advertiser Label IDs", "value": "ADVERTISER_LABEL_IDS" }{ "label": "Advertiser Name", "value": "ADVERTISER_NAME" }{ "label": "Advertiser Primary Contact", "value": "ADVERTISER_PRIMARY_CONTACT" }{ "label": "Ad Location", "value": "AD_LOCATION" }{ "label": "Ad Location Name", "value": "AD_LOCATION_NAME" }{ "label": "Ad Unit Code", "value": "AD_UNIT_CODE" }{ "label": "Ad Unit Code Level 1", "value": "AD_UNIT_CODE_LEVEL_1" }{ "label": "Ad Unit Code Level 10", "value": "AD_UNIT_CODE_LEVEL_10" }{ "label": "Ad Unit Code Level 11", "value": "AD_UNIT_CODE_LEVEL_11" }{ "label": "Ad Unit Code Level 12", "value": "AD_UNIT_CODE_LEVEL_12" }{ "label": "Ad Unit Code Level 13", "value": "AD_UNIT_CODE_LEVEL_13" }{ "label": "Ad Unit Code Level 14", "value": "AD_UNIT_CODE_LEVEL_14" }{ "label": "Ad Unit Code Level 15", "value": "AD_UNIT_CODE_LEVEL_15" }{ "label": "Ad Unit Code Level 16", "value": "AD_UNIT_CODE_LEVEL_16" }{ "label": "Ad Unit Code Level 2", "value": "AD_UNIT_CODE_LEVEL_2" }{ "label": "Ad Unit Code Level 3", "value": "AD_UNIT_CODE_LEVEL_3" }{ "label": "Ad Unit Code Level 4", "value": "AD_UNIT_CODE_LEVEL_4" }{ "label": "Ad Unit Code Level 5", "value": "AD_UNIT_CODE_LEVEL_5" }{ "label": "Ad Unit Code Level 6", "value": "AD_UNIT_CODE_LEVEL_6" }{ "label": "Ad Unit Code Level 7", "value": "AD_UNIT_CODE_LEVEL_7" }{ "label": "Ad Unit Code Level 8", "value": "AD_UNIT_CODE_LEVEL_8" }{ "label": "Ad Unit Code Level 9", "value": "AD_UNIT_CODE_LEVEL_9" }{ "label": "Ad Unit Depth", "value": "AD_UNIT_DEPTH" }{ "label": "Ad Unit ID", "value": "AD_UNIT_ID" }{ "label": "Ad Unit ID All Level", "value": "AD_UNIT_ID_ALL_LEVEL" }{ "label": "Ad Unit ID Level 1", "value": "AD_UNIT_ID_LEVEL_1" }{ "label": "Ad Unit ID Level 10", "value": "AD_UNIT_ID_LEVEL_10" }{ "label": "Ad Unit ID Level 11", "value": "AD_UNIT_ID_LEVEL_11" }{ "label": "Ad Unit ID Level 12", "value": "AD_UNIT_ID_LEVEL_12" }{ "label": "Ad Unit ID Level 13", "value": "AD_UNIT_ID_LEVEL_13" }{ "label": "Ad Unit ID Level 14", "value": "AD_UNIT_ID_LEVEL_14" }{ "label": "Ad Unit ID Level 15", "value": "AD_UNIT_ID_LEVEL_15" }{ "label": "Ad Unit ID Level 16", "value": "AD_UNIT_ID_LEVEL_16" }{ "label": "Ad Unit ID Level 2", "value": "AD_UNIT_ID_LEVEL_2" }{ "label": "Ad Unit ID Level 3", "value": "AD_UNIT_ID_LEVEL_3" }{ "label": "Ad Unit ID Level 4", "value": "AD_UNIT_ID_LEVEL_4" }{ "label": "Ad Unit ID Level 5", "value": "AD_UNIT_ID_LEVEL_5" }{ "label": "Ad Unit ID Level 6", "value": "AD_UNIT_ID_LEVEL_6" }{ "label": "Ad Unit ID Level 7", "value": "AD_UNIT_ID_LEVEL_7" }{ "label": "Ad Unit ID Level 8", "value": "AD_UNIT_ID_LEVEL_8" }{ "label": "Ad Unit ID Level 9", "value": "AD_UNIT_ID_LEVEL_9" }{ "label": "Ad Unit ID Top Level", "value": "AD_UNIT_ID_TOP_LEVEL" }{ "label": "Ad Unit Name", "value": "AD_UNIT_NAME" }{ "label": "Ad Unit Name All Level", "value": "AD_UNIT_NAME_ALL_LEVEL" }{ "label": "Ad Unit Name Level 1", "value": "AD_UNIT_NAME_LEVEL_1" }{ "label": "Ad Unit Name Level 10", "value": "AD_UNIT_NAME_LEVEL_10" }{ "label": "Ad Unit Name Level 11", "value": "AD_UNIT_NAME_LEVEL_11" }{ "label": "Ad Unit Name Level 12", "value": "AD_UNIT_NAME_LEVEL_12" }{ "label": "Ad Unit Name Level 13", "value": "AD_UNIT_NAME_LEVEL_13" }{ "label": "Ad Unit Name Level 14", "value": "AD_UNIT_NAME_LEVEL_14" }{ "label": "Ad Unit Name Level 15", "value": "AD_UNIT_NAME_LEVEL_15" }{ "label": "Ad Unit Name Level 16", "value": "AD_UNIT_NAME_LEVEL_16" }{ "label": "Ad Unit Name Level 2", "value": "AD_UNIT_NAME_LEVEL_2" }{ "label": "Ad Unit Name Level 3", "value": "AD_UNIT_NAME_LEVEL_3" }{ "label": "Ad Unit Name Level 4", "value": "AD_UNIT_NAME_LEVEL_4" }{ "label": "Ad Unit Name Level 5", "value": "AD_UNIT_NAME_LEVEL_5" }{ "label": "Ad Unit Name Level 6", "value": "AD_UNIT_NAME_LEVEL_6" }{ "label": "Ad Unit Name Level 7", "value": "AD_UNIT_NAME_LEVEL_7" }{ "label": "Ad Unit Name Level 8", "value": "AD_UNIT_NAME_LEVEL_8" }{ "label": "Ad Unit Name Level 9", "value": "AD_UNIT_NAME_LEVEL_9" }{ "label": "Ad Unit Name Top Level", "value": "AD_UNIT_NAME_TOP_LEVEL" }{ "label": "Ad Unit Reward Amount", "value": "AD_UNIT_REWARD_AMOUNT" }{ "label": "Ad Unit Reward Type", "value": "AD_UNIT_REWARD_TYPE" }{ "label": "Ad Unit Status", "value": "AD_UNIT_STATUS" }{ "label": "Ad Unit Status Name", "value": "AD_UNIT_STATUS_NAME" }{ "label": "App Version", "value": "APP_VERSION" }{ "label": "Backfill Advertiser External ID", "value": "BACKFILL_ADVERTISER_EXTERNAL_ID" }{ "label": "Backfill Advertiser ID", "value": "BACKFILL_ADVERTISER_ID" }{ "label": "Backfill Advertiser Labels", "value": "BACKFILL_ADVERTISER_LABELS" }{ "label": "Backfill Advertiser Label IDs", "value": "BACKFILL_ADVERTISER_LABEL_IDS" }{ "label": "Backfill Advertiser Name", "value": "BACKFILL_ADVERTISER_NAME" }{ "label": "Backfill Advertiser Primary Contact", "value": "BACKFILL_ADVERTISER_PRIMARY_CONTACT" }{ "label": "Backfill Creative Billing Type", "value": "BACKFILL_CREATIVE_BILLING_TYPE" }{ "label": "Backfill Creative Billing Type Name", "value": "BACKFILL_CREATIVE_BILLING_TYPE_NAME" }{ "label": "Backfill Creative Click Through URL", "value": "BACKFILL_CREATIVE_CLICK_THROUGH_URL" }{ "label": "Backfill Creative ID", "value": "BACKFILL_CREATIVE_ID" }{ "label": "Backfill Creative Name", "value": "BACKFILL_CREATIVE_NAME" }{ "label": "Backfill Creative Third Party Vendor", "value": "BACKFILL_CREATIVE_THIRD_PARTY_VENDOR" }{ "label": "Backfill Creative Type", "value": "BACKFILL_CREATIVE_TYPE" }{ "label": "Backfill Creative Type Name", "value": "BACKFILL_CREATIVE_TYPE_NAME" }{ "label": "Backfill Line Item Archived", "value": "BACKFILL_LINE_ITEM_ARCHIVED" }{ "label": "Backfill Line Item Companion Delivery Option", "value": "BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION" }{ "label": "Backfill Line Item Companion Delivery Option Name", "value": "BACKFILL_LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME" }{ "label": "Backfill Line Item Computed Status", "value": "BACKFILL_LINE_ITEM_COMPUTED_STATUS" }{ "label": "Backfill Line Item Computed Status Name", "value": "BACKFILL_LINE_ITEM_COMPUTED_STATUS_NAME" }{ "label": "Backfill Line Item Contracted Quantity", "value": "BACKFILL_LINE_ITEM_CONTRACTED_QUANTITY" }{ "label": "Backfill Line Item Cost Per Unit", "value": "BACKFILL_LINE_ITEM_COST_PER_UNIT" }{ "label": "Backfill Line Item Cost Type", "value": "BACKFILL_LINE_ITEM_COST_TYPE" }{ "label": "Backfill Line Item Cost Type Name", "value": "BACKFILL_LINE_ITEM_COST_TYPE_NAME" }{ "label": "Backfill Line Item Creative End Date", "value": "BACKFILL_LINE_ITEM_CREATIVE_END_DATE" }{ "label": "Backfill Line Item Creative Rotation Type", "value": "BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE" }{ "label": "Backfill Line Item Creative Rotation Type Name", "value": "BACKFILL_LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME" }{ "label": "Backfill Line Item Creative Start Date", "value": "BACKFILL_LINE_ITEM_CREATIVE_START_DATE" }{ "label": "Backfill Line Item Currency Code", "value": "BACKFILL_LINE_ITEM_CURRENCY_CODE" }{ "label": "Backfill Line Item Delivery Indicator", "value": "BACKFILL_LINE_ITEM_DELIVERY_INDICATOR" }{ "label": "Backfill Line Item Delivery Rate Type", "value": "BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE" }{ "label": "Backfill Line Item Delivery Rate Type Name", "value": "BACKFILL_LINE_ITEM_DELIVERY_RATE_TYPE_NAME" }{ "label": "Backfill Line Item Discount Absolute", "value": "BACKFILL_LINE_ITEM_DISCOUNT_ABSOLUTE" }{ "label": "Backfill Line Item Discount Percentage", "value": "BACKFILL_LINE_ITEM_DISCOUNT_PERCENTAGE" }{ "label": "Backfill Line Item End Date", "value": "BACKFILL_LINE_ITEM_END_DATE" }{ "label": "Backfill Line Item End Date Time", "value": "BACKFILL_LINE_ITEM_END_DATE_TIME" }{ "label": "Backfill Line Item Environment Type", "value": "BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE" }{ "label": "Backfill Line Item Environment Type Name", "value": "BACKFILL_LINE_ITEM_ENVIRONMENT_TYPE_NAME" }{ "label": "Backfill Line Item External Deal ID", "value": "BACKFILL_LINE_ITEM_EXTERNAL_DEAL_ID" }{ "label": "Backfill Line Item External ID", "value": "BACKFILL_LINE_ITEM_EXTERNAL_ID" }{ "label": "Backfill Line Item Frequency Cap", "value": "BACKFILL_LINE_ITEM_FREQUENCY_CAP" }{ "label": "Backfill Line Item ID", "value": "BACKFILL_LINE_ITEM_ID" }{ "label": "Backfill Line Item Last Modified By App", "value": "BACKFILL_LINE_ITEM_LAST_MODIFIED_BY_APP" }{ "label": "Backfill Line Item Lifetime Clicks", "value": "BACKFILL_LINE_ITEM_LIFETIME_CLICKS" }{ "label": "Backfill Line Item Lifetime Impressions", "value": "BACKFILL_LINE_ITEM_LIFETIME_IMPRESSIONS" }{ "label": "Backfill Line Item Lifetime Viewable Impressions", "value": "BACKFILL_LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS" }{ "label": "Backfill Line Item Makegood", "value": "BACKFILL_LINE_ITEM_MAKEGOOD" }{ "label": "Backfill Line Item Name", "value": "BACKFILL_LINE_ITEM_NAME" }{ "label": "Backfill Line Item Non-CPD Booked Revenue", "value": "BACKFILL_LINE_ITEM_NON_CPD_BOOKED_REVENUE" }{ "label": "Backfill Line Item Optimizable", "value": "BACKFILL_LINE_ITEM_OPTIMIZABLE" }{ "label": "Backfill Line Item Primary Goal Type", "value": "BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE" }{ "label": "Backfill Line Item Primary Goal Type Name", "value": "BACKFILL_LINE_ITEM_PRIMARY_GOAL_TYPE_NAME" }{ "label": "Backfill Line Item Primary Goal Unit Type", "value": "BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE" }{ "label": "Backfill Line Item Primary Goal Unit Type Name", "value": "BACKFILL_LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME" }{ "label": "Backfill Line Item Priority", "value": "BACKFILL_LINE_ITEM_PRIORITY" }{ "label": "Backfill Line Item Reservation Status", "value": "BACKFILL_LINE_ITEM_RESERVATION_STATUS" }{ "label": "Backfill Line Item Reservation Status Name", "value": "BACKFILL_LINE_ITEM_RESERVATION_STATUS_NAME" }{ "label": "Backfill Line Item Start Date", "value": "BACKFILL_LINE_ITEM_START_DATE" }{ "label": "Backfill Line Item Start Date Time", "value": "BACKFILL_LINE_ITEM_START_DATE_TIME" }{ "label": "Backfill Line Item Type", "value": "BACKFILL_LINE_ITEM_TYPE" }{ "label": "Backfill Line Item Type Name", "value": "BACKFILL_LINE_ITEM_TYPE_NAME" }{ "label": "Backfill Line Item Unlimited End", "value": "BACKFILL_LINE_ITEM_UNLIMITED_END" }{ "label": "Backfill Line Item Value Cost Per Unit", "value": "BACKFILL_LINE_ITEM_VALUE_COST_PER_UNIT" }{ "label": "Backfill Line Item Web Property Code", "value": "BACKFILL_LINE_ITEM_WEB_PROPERTY_CODE" }{ "label": "Backfill Master Companion Creative ID", "value": "BACKFILL_MASTER_COMPANION_CREATIVE_ID" }{ "label": "Backfill Master Companion Creative Name", "value": "BACKFILL_MASTER_COMPANION_CREATIVE_NAME" }{ "label": "Backfill Order Agency", "value": "BACKFILL_ORDER_AGENCY" }{ "label": "Backfill Order Agency ID", "value": "BACKFILL_ORDER_AGENCY_ID" }{ "label": "Backfill Order Booked CPC", "value": "BACKFILL_ORDER_BOOKED_CPC" }{ "label": "Backfill Order Booked CPM", "value": "BACKFILL_ORDER_BOOKED_CPM" }{ "label": "Backfill Order Delivery Status", "value": "BACKFILL_ORDER_DELIVERY_STATUS" }{ "label": "Backfill Order Delivery Status Name", "value": "BACKFILL_ORDER_DELIVERY_STATUS_NAME" }{ "label": "Backfill Order End Date", "value": "BACKFILL_ORDER_END_DATE" }{ "label": "Backfill Order End Date Time", "value": "BACKFILL_ORDER_END_DATE_TIME" }{ "label": "Backfill Order External ID", "value": "BACKFILL_ORDER_EXTERNAL_ID" }{ "label": "Backfill Order ID", "value": "BACKFILL_ORDER_ID" }{ "label": "Backfill Order Labels", "value": "BACKFILL_ORDER_LABELS" }{ "label": "Backfill Order Label IDs", "value": "BACKFILL_ORDER_LABEL_IDS" }{ "label": "Backfill Order Lifetime Clicks", "value": "BACKFILL_ORDER_LIFETIME_CLICKS" }{ "label": "Backfill Order Lifetime Impressions", "value": "BACKFILL_ORDER_LIFETIME_IMPRESSIONS" }{ "label": "Backfill Order Name", "value": "BACKFILL_ORDER_NAME" }{ "label": "Backfill Order PO Number", "value": "BACKFILL_ORDER_PO_NUMBER" }{ "label": "Backfill Order Programmatic", "value": "BACKFILL_ORDER_PROGRAMMATIC" }{ "label": "Backfill Order Salesperson", "value": "BACKFILL_ORDER_SALESPERSON" }{ "label": "Backfill Order Secondary Salespeople", "value": "BACKFILL_ORDER_SECONDARY_SALESPEOPLE" }{ "label": "Backfill Order Secondary Salespeople ID", "value": "BACKFILL_ORDER_SECONDARY_SALESPEOPLE_ID" }{ "label": "Backfill Order Secondary Traffickers", "value": "BACKFILL_ORDER_SECONDARY_TRAFFICKERS" }{ "label": "Backfill Order Secondary Traffickers ID", "value": "BACKFILL_ORDER_SECONDARY_TRAFFICKERS_ID" }{ "label": "Backfill Order Start Date", "value": "BACKFILL_ORDER_START_DATE" }{ "label": "Backfill Order Start Date Time", "value": "BACKFILL_ORDER_START_DATE_TIME" }{ "label": "Backfill Order Trafficker", "value": "BACKFILL_ORDER_TRAFFICKER" }{ "label": "Backfill Order Trafficker ID", "value": "BACKFILL_ORDER_TRAFFICKER_ID" }{ "label": "Backfill Order Unlimited End", "value": "BACKFILL_ORDER_UNLIMITED_END" }{ "label": "Backfill Programmatic Buyer ID", "value": "BACKFILL_PROGRAMMATIC_BUYER_ID" }{ "label": "Backfill Programmatic Buyer Name", "value": "BACKFILL_PROGRAMMATIC_BUYER_NAME" }{ "label": "Branding Type", "value": "BRANDING_TYPE" }{ "label": "Branding Type Name", "value": "BRANDING_TYPE_NAME" }{ "label": "Browser Category", "value": "BROWSER_CATEGORY" }{ "label": "Browser Category Name", "value": "BROWSER_CATEGORY_NAME" }{ "label": "Browser ID", "value": "BROWSER_ID" }{ "label": "Browser Name", "value": "BROWSER_NAME" }{ "label": "Carrier ID", "value": "CARRIER_ID" }{ "label": "Carrier Name", "value": "CARRIER_NAME" }{ "label": "Classified Advertiser ID", "value": "CLASSIFIED_ADVERTISER_ID" }{ "label": "Classified Advertiser Name", "value": "CLASSIFIED_ADVERTISER_NAME" }{ "label": "Classified Brand ID", "value": "CLASSIFIED_BRAND_ID" }{ "label": "Classified Brand Name", "value": "CLASSIFIED_BRAND_NAME" }{ "label": "Content ID", "value": "CONTENT_ID" }{ "label": "Content Name", "value": "CONTENT_NAME" }{ "label": "Country ID", "value": "COUNTRY_ID" }{ "label": "Country Name", "value": "COUNTRY_NAME" }{ "label": "Creative Billing Type", "value": "CREATIVE_BILLING_TYPE" }{ "label": "Creative Billing Type Name", "value": "CREATIVE_BILLING_TYPE_NAME" }{ "label": "Creative Click Through URL", "value": "CREATIVE_CLICK_THROUGH_URL" }{ "label": "Creative ID", "value": "CREATIVE_ID" }{ "label": "Creative Name", "value": "CREATIVE_NAME" }{ "label": "Creative Technology", "value": "CREATIVE_TECHNOLOGY" }{ "label": "Creative Technology Name", "value": "CREATIVE_TECHNOLOGY_NAME" }{ "label": "Creative Third Party Vendor", "value": "CREATIVE_THIRD_PARTY_VENDOR" }{ "label": "Creative Type", "value": "CREATIVE_TYPE" }{ "label": "Creative Type Name", "value": "CREATIVE_TYPE_NAME" }{ "label": "Date", "value": "DATE" }{ "label": "Day of Week", "value": "DAY_OF_WEEK" }{ "label": "Demand Channel", "value": "DEMAND_CHANNEL" }{ "label": "Demand Channel Name", "value": "DEMAND_CHANNEL_NAME" }{ "label": "Demand Subchannel", "value": "DEMAND_SUBCHANNEL" }{ "label": "Demand Subchannel Name", "value": "DEMAND_SUBCHANNEL_NAME" }{ "label": "Device", "value": "DEVICE" }{ "label": "Device Category", "value": "DEVICE_CATEGORY" }{ "label": "Device Category Name", "value": "DEVICE_CATEGORY_NAME" }{ "label": "Device Name", "value": "DEVICE_NAME" }{ "label": "Exchange Third Party Company ID", "value": "EXCHANGE_THIRD_PARTY_COMPANY_ID" }{ "label": "Exchange Third Party Company Name", "value": "EXCHANGE_THIRD_PARTY_COMPANY_NAME" }{ "label": "First Look Pricing Rule ID", "value": "FIRST_LOOK_PRICING_RULE_ID" }{ "label": "First Look Pricing Rule Name", "value": "FIRST_LOOK_PRICING_RULE_NAME" }{ "label": "Hour", "value": "HOUR" }{ "label": "Interaction Type", "value": "INTERACTION_TYPE" }{ "label": "Interaction Type Name", "value": "INTERACTION_TYPE_NAME" }{ "label": "Inventory Format", "value": "INVENTORY_FORMAT" }{ "label": "Inventory Format Name", "value": "INVENTORY_FORMAT_NAME" }{ "label": "Inventory Type", "value": "INVENTORY_TYPE" }{ "label": "Inventory Type Name", "value": "INVENTORY_TYPE_NAME" }{ "label": "Is AdX Direct", "value": "IS_ADX_DIRECT" }{ "label": "Is First Look Deal", "value": "IS_FIRST_LOOK_DEAL" }{ "label": "Key Values ID", "value": "KEY_VALUES_ID" }{ "label": "Key Values Name", "value": "KEY_VALUES_NAME" }{ "label": "Line Item Archived", "value": "LINE_ITEM_ARCHIVED" }{ "label": "Line Item Companion Delivery Option", "value": "LINE_ITEM_COMPANION_DELIVERY_OPTION" }{ "label": "Line Item Companion Delivery Option Name", "value": "LINE_ITEM_COMPANION_DELIVERY_OPTION_NAME" }{ "label": "Line Item Computed Status", "value": "LINE_ITEM_COMPUTED_STATUS" }{ "label": "Line Item Computed Status Name", "value": "LINE_ITEM_COMPUTED_STATUS_NAME" }{ "label": "Line Item Contracted Quantity", "value": "LINE_ITEM_CONTRACTED_QUANTITY" }{ "label": "Line Item Cost Per Unit", "value": "LINE_ITEM_COST_PER_UNIT" }{ "label": "Line Item Cost Type", "value": "LINE_ITEM_COST_TYPE" }{ "label": "Line Item Cost Type Name", "value": "LINE_ITEM_COST_TYPE_NAME" }{ "label": "Line Item Creative End Date", "value": "LINE_ITEM_CREATIVE_END_DATE" }{ "label": "Line Item Creative Rotation Type", "value": "LINE_ITEM_CREATIVE_ROTATION_TYPE" }{ "label": "Line Item Creative Rotation Type Name", "value": "LINE_ITEM_CREATIVE_ROTATION_TYPE_NAME" }{ "label": "Line Item Creative Start Date", "value": "LINE_ITEM_CREATIVE_START_DATE" }{ "label": "Line Item Currency Code", "value": "LINE_ITEM_CURRENCY_CODE" }{ "label": "Line Item Delivery Indicator", "value": "LINE_ITEM_DELIVERY_INDICATOR" }{ "label": "Line Item Delivery Rate Type", "value": "LINE_ITEM_DELIVERY_RATE_TYPE" }{ "label": "Line Item Delivery Rate Type Name", "value": "LINE_ITEM_DELIVERY_RATE_TYPE_NAME" }{ "label": "Line Item Discount Absolute", "value": "LINE_ITEM_DISCOUNT_ABSOLUTE" }{ "label": "Line Item Discount Percentage", "value": "LINE_ITEM_DISCOUNT_PERCENTAGE" }{ "label": "Line Item End Date", "value": "LINE_ITEM_END_DATE" }{ "label": "Line Item End Date Time", "value": "LINE_ITEM_END_DATE_TIME" }{ "label": "Line Item Environment Type", "value": "LINE_ITEM_ENVIRONMENT_TYPE" }{ "label": "Line Item Environment Type Name", "value": "LINE_ITEM_ENVIRONMENT_TYPE_NAME" }{ "label": "Line Item External Deal ID", "value": "LINE_ITEM_EXTERNAL_DEAL_ID" }{ "label": "Line Item External ID", "value": "LINE_ITEM_EXTERNAL_ID" }{ "label": "Line Item Frequency Cap", "value": "LINE_ITEM_FREQUENCY_CAP" }{ "label": "Line Item ID", "value": "LINE_ITEM_ID" }{ "label": "Line Item Last Modified By App", "value": "LINE_ITEM_LAST_MODIFIED_BY_APP" }{ "label": "Line Item Lifetime Clicks", "value": "LINE_ITEM_LIFETIME_CLICKS" }{ "label": "Line Item Lifetime Impressions", "value": "LINE_ITEM_LIFETIME_IMPRESSIONS" }{ "label": "Line Item Lifetime Viewable Impressions", "value": "LINE_ITEM_LIFETIME_VIEWABLE_IMPRESSIONS" }{ "label": "Line Item Makegood", "value": "LINE_ITEM_MAKEGOOD" }{ "label": "Line Item Name", "value": "LINE_ITEM_NAME" }{ "label": "Line Item Non-CPD Booked Revenue", "value": "LINE_ITEM_NON_CPD_BOOKED_REVENUE" }{ "label": "Line Item Optimizable", "value": "LINE_ITEM_OPTIMIZABLE" }{ "label": "Line Item Primary Goal Type", "value": "LINE_ITEM_PRIMARY_GOAL_TYPE" }{ "label": "Line Item Primary Goal Type Name", "value": "LINE_ITEM_PRIMARY_GOAL_TYPE_NAME" }{ "label": "Line Item Primary Goal Units Absolute", "value": "LINE_ITEM_PRIMARY_GOAL_UNITS_ABSOLUTE" }{ "label": "Line Item Primary Goal Units Percentage", "value": "LINE_ITEM_PRIMARY_GOAL_UNITS_PERCENTAGE" }{ "label": "Line Item Primary Goal Unit Type", "value": "LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE" }{ "label": "Line Item Primary Goal Unit Type Name", "value": "LINE_ITEM_PRIMARY_GOAL_UNIT_TYPE_NAME" }{ "label": "Line Item Priority", "value": "LINE_ITEM_PRIORITY" }{ "label": "Line Item Reservation Status", "value": "LINE_ITEM_RESERVATION_STATUS" }{ "label": "Line Item Reservation Status Name", "value": "LINE_ITEM_RESERVATION_STATUS_NAME" }{ "label": "Line Item Start Date", "value": "LINE_ITEM_START_DATE" }{ "label": "Line Item Start Date Time", "value": "LINE_ITEM_START_DATE_TIME" }{ "label": "Line Item Type", "value": "LINE_ITEM_TYPE" }{ "label": "Line Item Type Name", "value": "LINE_ITEM_TYPE_NAME" }{ "label": "Line Item Unlimited End", "value": "LINE_ITEM_UNLIMITED_END" }{ "label": "Line Item Value Cost Per Unit", "value": "LINE_ITEM_VALUE_COST_PER_UNIT" }{ "label": "Line Item Web Property Code", "value": "LINE_ITEM_WEB_PROPERTY_CODE" }{ "label": "Master Companion Creative ID", "value": "MASTER_COMPANION_CREATIVE_ID" }{ "label": "Master Companion Creative Name", "value": "MASTER_COMPANION_CREATIVE_NAME" }{ "label": "Mobile App Free", "value": "MOBILE_APP_FREE" }{ "label": "Mobile App Icon URL", "value": "MOBILE_APP_ICON_URL" }{ "label": "Mobile App ID", "value": "MOBILE_APP_ID" }{ "label": "Mobile App Name", "value": "MOBILE_APP_NAME" }{ "label": "Mobile App Ownership Status", "value": "MOBILE_APP_OWNERSHIP_STATUS" }{ "label": "Mobile App Ownership Status Name", "value": "MOBILE_APP_OWNERSHIP_STATUS_NAME" }{ "label": "Mobile App Store", "value": "MOBILE_APP_STORE" }{ "label": "Mobile App Store Name", "value": "MOBILE_APP_STORE_NAME" }{ "label": "Mobile Inventory Type", "value": "MOBILE_INVENTORY_TYPE" }{ "label": "Mobile Inventory Type Name", "value": "MOBILE_INVENTORY_TYPE_NAME" }{ "label": "Mobile SDK Version Name", "value": "MOBILE_SDK_VERSION_NAME" }{ "label": "Month Year", "value": "MONTH_YEAR" }{ "label": "Native Ad Format ID", "value": "NATIVE_AD_FORMAT_ID" }{ "label": "Native Ad Format Name", "value": "NATIVE_AD_FORMAT_NAME" }{ "label": "Native Style ID", "value": "NATIVE_STYLE_ID" }{ "label": "Native Style Name", "value": "NATIVE_STYLE_NAME" }{ "label": "Operating System Category", "value": "OPERATING_SYSTEM_CATEGORY" }{ "label": "Operating System Category Name", "value": "OPERATING_SYSTEM_CATEGORY_NAME" }{ "label": "Operating System Version ID", "value": "OPERATING_SYSTEM_VERSION_ID" }{ "label": "Operating System Version Name", "value": "OPERATING_SYSTEM_VERSION_NAME" }{ "label": "Order Agency", "value": "ORDER_AGENCY" }{ "label": "Order Agency ID", "value": "ORDER_AGENCY_ID" }{ "label": "Order Booked CPC", "value": "ORDER_BOOKED_CPC" }{ "label": "Order Booked CPM", "value": "ORDER_BOOKED_CPM" }{ "label": "Order Delivery Status", "value": "ORDER_DELIVERY_STATUS" }{ "label": "Order Delivery Status Name", "value": "ORDER_DELIVERY_STATUS_NAME" }{ "label": "Order End Date", "value": "ORDER_END_DATE" }{ "label": "Order End Date Time", "value": "ORDER_END_DATE_TIME" }{ "label": "Order External ID", "value": "ORDER_EXTERNAL_ID" }{ "label": "Order ID", "value": "ORDER_ID" }{ "label": "Order Labels", "value": "ORDER_LABELS" }{ "label": "Order Label IDs", "value": "ORDER_LABEL_IDS" }{ "label": "Order Lifetime Clicks", "value": "ORDER_LIFETIME_CLICKS" }{ "label": "Order Lifetime Impressions", "value": "ORDER_LIFETIME_IMPRESSIONS" }{ "label": "Order Name", "value": "ORDER_NAME" }{ "label": "Order PO Number", "value": "ORDER_PO_NUMBER" }{ "label": "Order Programmatic", "value": "ORDER_PROGRAMMATIC" }{ "label": "Order Salesperson", "value": "ORDER_SALESPERSON" }{ "label": "Order Secondary Salespeople", "value": "ORDER_SECONDARY_SALESPEOPLE" }{ "label": "Order Secondary Salespeople ID", "value": "ORDER_SECONDARY_SALESPEOPLE_ID" }{ "label": "Order Secondary Traffickers", "value": "ORDER_SECONDARY_TRAFFICKERS" }{ "label": "Order Secondary Traffickers ID", "value": "ORDER_SECONDARY_TRAFFICKERS_ID" }{ "label": "Order Start Date", "value": "ORDER_START_DATE" }{ "label": "Order Start Date Time", "value": "ORDER_START_DATE_TIME" }{ "label": "Order Trafficker", "value": "ORDER_TRAFFICKER" }{ "label": "Order Trafficker ID", "value": "ORDER_TRAFFICKER_ID" }{ "label": "Order Unlimited End", "value": "ORDER_UNLIMITED_END" }{ "label": "Placement ID", "value": "PLACEMENT_ID" }{ "label": "Placement ID All", "value": "PLACEMENT_ID_ALL" }{ "label": "Placement Name", "value": "PLACEMENT_NAME" }{ "label": "Placement Name All", "value": "PLACEMENT_NAME_ALL" }{ "label": "Placement Status", "value": "PLACEMENT_STATUS" }{ "label": "Placement Status All", "value": "PLACEMENT_STATUS_ALL" }{ "label": "Placement Status Name", "value": "PLACEMENT_STATUS_NAME" }{ "label": "Placement Status Name All", "value": "PLACEMENT_STATUS_NAME_ALL" }{ "label": "Programmatic Buyer ID", "value": "PROGRAMMATIC_BUYER_ID" }{ "label": "Programmatic Buyer Name", "value": "PROGRAMMATIC_BUYER_NAME" }{ "label": "Programmatic Channel", "value": "PROGRAMMATIC_CHANNEL" }{ "label": "Programmatic Channel Name", "value": "PROGRAMMATIC_CHANNEL_NAME" }{ "label": "Rendered Creative Size", "value": "RENDERED_CREATIVE_SIZE" }{ "label": "Requested Ad Sizes", "value": "REQUESTED_AD_SIZES" }{ "label": "Request Type", "value": "REQUEST_TYPE" }{ "label": "Request Type Name", "value": "REQUEST_TYPE_NAME" }{ "label": "Site", "value": "SITE" }{ "label": "Targeting ID", "value": "TARGETING_ID" }{ "label": "Targeting Name", "value": "TARGETING_NAME" }{ "label": "Targeting Type", "value": "TARGETING_TYPE" }{ "label": "Targeting Type Name", "value": "TARGETING_TYPE_NAME" }{ "label": "Traffic Source", "value": "TRAFFIC_SOURCE" }{ "label": "Traffic Source Name", "value": "TRAFFIC_SOURCE_NAME" }{ "label": "Unified Pricing Rule ID", "value": "UNIFIED_PRICING_RULE_ID" }{ "label": "Unified Pricing Rule Name", "value": "UNIFIED_PRICING_RULE_NAME" }{ "label": "Video Placement", "value": "VIDEO_PLCMT" }{ "label": "Video Placement Name", "value": "VIDEO_PLCMT_NAME" }{ "label": "Week", "value": "WEEK" }{ "label": "Yield Group Buyer Name", "value": "YIELD_GROUP_BUYER_NAME" }{ "label": "Yield Group ID", "value": "YIELD_GROUP_ID" }{ "label": "Yield Group Name", "value": "YIELD_GROUP_NAME" }{ "label": "Line Item Custom Field 0 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID" }{ "label": "Line Item Custom Field 1 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID" }{ "label": "Line Item Custom Field 2 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID" }{ "label": "Line Item Custom Field 3 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID" }{ "label": "Line Item Custom Field 4 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID" }{ "label": "Line Item Custom Field 5 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID" }{ "label": "Line Item Custom Field 6 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID" }{ "label": "Line Item Custom Field 7 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID" }{ "label": "Line Item Custom Field 8 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID" }{ "label": "Line Item Custom Field 9 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID" }{ "label": "Line Item Custom Field 10 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID" }{ "label": "Line Item Custom Field 11 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID" }{ "label": "Line Item Custom Field 12 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID" }{ "label": "Line Item Custom Field 13 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID" }{ "label": "Line Item Custom Field 14 Option ID", "value": "LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID" }{ "label": "Line Item Custom Field 0 Value", "value": "LINE_ITEM_CUSTOM_FIELD_0_VALUE" }{ "label": "Line Item Custom Field 1 Value", "value": "LINE_ITEM_CUSTOM_FIELD_1_VALUE" }{ "label": "Line Item Custom Field 2 Value", "value": "LINE_ITEM_CUSTOM_FIELD_2_VALUE" }{ "label": "Line Item Custom Field 3 Value", "value": "LINE_ITEM_CUSTOM_FIELD_3_VALUE" }{ "label": "Line Item Custom Field 4 Value", "value": "LINE_ITEM_CUSTOM_FIELD_4_VALUE" }{ "label": "Line Item Custom Field 5 Value", "value": "LINE_ITEM_CUSTOM_FIELD_5_VALUE" }{ "label": "Line Item Custom Field 6 Value", "value": "LINE_ITEM_CUSTOM_FIELD_6_VALUE" }{ "label": "Line Item Custom Field 7 Value", "value": "LINE_ITEM_CUSTOM_FIELD_7_VALUE" }{ "label": "Line Item Custom Field 8 Value", "value": "LINE_ITEM_CUSTOM_FIELD_8_VALUE" }{ "label": "Line Item Custom Field 9 Value", "value": "LINE_ITEM_CUSTOM_FIELD_9_VALUE" }{ "label": "Line Item Custom Field 10 Value", "value": "LINE_ITEM_CUSTOM_FIELD_10_VALUE" }{ "label": "Line Item Custom Field 11 Value", "value": "LINE_ITEM_CUSTOM_FIELD_11_VALUE" }{ "label": "Line Item Custom Field 12 Value", "value": "LINE_ITEM_CUSTOM_FIELD_12_VALUE" }{ "label": "Line Item Custom Field 13 Value", "value": "LINE_ITEM_CUSTOM_FIELD_13_VALUE" }{ "label": "Line Item Custom Field 14 Value", "value": "LINE_ITEM_CUSTOM_FIELD_14_VALUE" }{ "label": "Order Custom Field 0 Option ID", "value": "ORDER_CUSTOM_FIELD_0_OPTION_ID" }{ "label": "Order Custom Field 1 Option ID", "value": "ORDER_CUSTOM_FIELD_1_OPTION_ID" }{ "label": "Order Custom Field 2 Option ID", "value": "ORDER_CUSTOM_FIELD_2_OPTION_ID" }{ "label": "Order Custom Field 3 Option ID", "value": "ORDER_CUSTOM_FIELD_3_OPTION_ID" }{ "label": "Order Custom Field 4 Option ID", "value": "ORDER_CUSTOM_FIELD_4_OPTION_ID" }{ "label": "Order Custom Field 5 Option ID", "value": "ORDER_CUSTOM_FIELD_5_OPTION_ID" }{ "label": "Order Custom Field 6 Option ID", "value": "ORDER_CUSTOM_FIELD_6_OPTION_ID" }{ "label": "Order Custom Field 7 Option ID", "value": "ORDER_CUSTOM_FIELD_7_OPTION_ID" }{ "label": "Order Custom Field 8 Option ID", "value": "ORDER_CUSTOM_FIELD_8_OPTION_ID" }{ "label": "Order Custom Field 9 Option ID", "value": "ORDER_CUSTOM_FIELD_9_OPTION_ID" }{ "label": "Order Custom Field 10 Option ID", "value": "ORDER_CUSTOM_FIELD_10_OPTION_ID" }{ "label": "Order Custom Field 11 Option ID", "value": "ORDER_CUSTOM_FIELD_11_OPTION_ID" }{ "label": "Order Custom Field 12 Option ID", "value": "ORDER_CUSTOM_FIELD_12_OPTION_ID" }{ "label": "Order Custom Field 13 Option ID", "value": "ORDER_CUSTOM_FIELD_13_OPTION_ID" }{ "label": "Order Custom Field 14 Option ID", "value": "ORDER_CUSTOM_FIELD_14_OPTION_ID" }{ "label": "Order Custom Field 0 Value", "value": "ORDER_CUSTOM_FIELD_0_VALUE" }{ "label": "Order Custom Field 1 Value", "value": "ORDER_CUSTOM_FIELD_1_VALUE" }{ "label": "Order Custom Field 2 Value", "value": "ORDER_CUSTOM_FIELD_2_VALUE" }{ "label": "Order Custom Field 3 Value", "value": "ORDER_CUSTOM_FIELD_3_VALUE" }{ "label": "Order Custom Field 4 Value", "value": "ORDER_CUSTOM_FIELD_4_VALUE" }{ "label": "Order Custom Field 5 Value", "value": "ORDER_CUSTOM_FIELD_5_VALUE" }{ "label": "Order Custom Field 6 Value", "value": "ORDER_CUSTOM_FIELD_6_VALUE" }{ "label": "Order Custom Field 7 Value", "value": "ORDER_CUSTOM_FIELD_7_VALUE" }{ "label": "Order Custom Field 8 Value", "value": "ORDER_CUSTOM_FIELD_8_VALUE" }{ "label": "Order Custom Field 9 Value", "value": "ORDER_CUSTOM_FIELD_9_VALUE" }{ "label": "Order Custom Field 10 Value", "value": "ORDER_CUSTOM_FIELD_10_VALUE" }{ "label": "Order Custom Field 11 Value", "value": "ORDER_CUSTOM_FIELD_11_VALUE" }{ "label": "Order Custom Field 12 Value", "value": "ORDER_CUSTOM_FIELD_12_VALUE" }{ "label": "Order Custom Field 13 Value", "value": "ORDER_CUSTOM_FIELD_13_VALUE" }{ "label": "Order Custom Field 14 Value", "value": "ORDER_CUSTOM_FIELD_14_VALUE" }{ "label": "Creative Custom Field 0 Option ID", "value": "CREATIVE_CUSTOM_FIELD_0_OPTION_ID" }{ "label": "Creative Custom Field 1 Option ID", "value": "CREATIVE_CUSTOM_FIELD_1_OPTION_ID" }{ "label": "Creative Custom Field 2 Option ID", "value": "CREATIVE_CUSTOM_FIELD_2_OPTION_ID" }{ "label": "Creative Custom Field 3 Option ID", "value": "CREATIVE_CUSTOM_FIELD_3_OPTION_ID" }{ "label": "Creative Custom Field 4 Option ID", "value": "CREATIVE_CUSTOM_FIELD_4_OPTION_ID" }{ "label": "Creative Custom Field 5 Option ID", "value": "CREATIVE_CUSTOM_FIELD_5_OPTION_ID" }{ "label": "Creative Custom Field 6 Option ID", "value": "CREATIVE_CUSTOM_FIELD_6_OPTION_ID" }{ "label": "Creative Custom Field 7 Option ID", "value": "CREATIVE_CUSTOM_FIELD_7_OPTION_ID" }{ "label": "Creative Custom Field 8 Option ID", "value": "CREATIVE_CUSTOM_FIELD_8_OPTION_ID" }{ "label": "Creative Custom Field 9 Option ID", "value": "CREATIVE_CUSTOM_FIELD_9_OPTION_ID" }{ "label": "Creative Custom Field 10 Option ID", "value": "CREATIVE_CUSTOM_FIELD_10_OPTION_ID" }{ "label": "Creative Custom Field 11 Option ID", "value": "CREATIVE_CUSTOM_FIELD_11_OPTION_ID" }{ "label": "Creative Custom Field 12 Option ID", "value": "CREATIVE_CUSTOM_FIELD_12_OPTION_ID" }{ "label": "Creative Custom Field 13 Option ID", "value": "CREATIVE_CUSTOM_FIELD_13_OPTION_ID" }{ "label": "Creative Custom Field 14 Option ID", "value": "CREATIVE_CUSTOM_FIELD_14_OPTION_ID" }{ "label": "Creative Custom Field 0 Value", "value": "CREATIVE_CUSTOM_FIELD_0_VALUE" }{ "label": "Creative Custom Field 1 Value", "value": "CREATIVE_CUSTOM_FIELD_1_VALUE" }{ "label": "Creative Custom Field 2 Value", "value": "CREATIVE_CUSTOM_FIELD_2_VALUE" }{ "label": "Creative Custom Field 3 Value", "value": "CREATIVE_CUSTOM_FIELD_3_VALUE" }{ "label": "Creative Custom Field 4 Value", "value": "CREATIVE_CUSTOM_FIELD_4_VALUE" }{ "label": "Creative Custom Field 5 Value", "value": "CREATIVE_CUSTOM_FIELD_5_VALUE" }{ "label": "Creative Custom Field 6 Value", "value": "CREATIVE_CUSTOM_FIELD_6_VALUE" }{ "label": "Creative Custom Field 7 Value", "value": "CREATIVE_CUSTOM_FIELD_7_VALUE" }{ "label": "Creative Custom Field 8 Value", "value": "CREATIVE_CUSTOM_FIELD_8_VALUE" }{ "label": "Creative Custom Field 9 Value", "value": "CREATIVE_CUSTOM_FIELD_9_VALUE" }{ "label": "Creative Custom Field 10 Value", "value": "CREATIVE_CUSTOM_FIELD_10_VALUE" }{ "label": "Creative Custom Field 11 Value", "value": "CREATIVE_CUSTOM_FIELD_11_VALUE" }{ "label": "Creative Custom Field 12 Value", "value": "CREATIVE_CUSTOM_FIELD_12_VALUE" }{ "label": "Creative Custom Field 13 Value", "value": "CREATIVE_CUSTOM_FIELD_13_VALUE" }{ "label": "Creative Custom Field 14 Value", "value": "CREATIVE_CUSTOM_FIELD_14_VALUE" }{ "label": "Backfill Line Item Custom Field 0 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 1 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 2 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 3 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 4 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 5 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 6 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 7 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 8 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 9 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 10 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 11 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 12 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 13 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 14 Option ID", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_OPTION_ID" }{ "label": "Backfill Line Item Custom Field 0 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_0_VALUE" }{ "label": "Backfill Line Item Custom Field 1 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_1_VALUE" }{ "label": "Backfill Line Item Custom Field 2 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_2_VALUE" }{ "label": "Backfill Line Item Custom Field 3 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_3_VALUE" }{ "label": "Backfill Line Item Custom Field 4 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_4_VALUE" }{ "label": "Backfill Line Item Custom Field 5 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_5_VALUE" }{ "label": "Backfill Line Item Custom Field 6 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_6_VALUE" }{ "label": "Backfill Line Item Custom Field 7 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_7_VALUE" }{ "label": "Backfill Line Item Custom Field 8 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_8_VALUE" }{ "label": "Backfill Line Item Custom Field 9 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_9_VALUE" }{ "label": "Backfill Line Item Custom Field 10 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_10_VALUE" }{ "label": "Backfill Line Item Custom Field 11 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_11_VALUE" }{ "label": "Backfill Line Item Custom Field 12 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_12_VALUE" }{ "label": "Backfill Line Item Custom Field 13 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_13_VALUE" }{ "label": "Backfill Line Item Custom Field 14 Value", "value": "BACKFILL_LINE_ITEM_CUSTOM_FIELD_14_VALUE" }{ "label": "Backfill Order Custom Field 0 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_0_OPTION_ID" }{ "label": "Backfill Order Custom Field 1 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_1_OPTION_ID" }{ "label": "Backfill Order Custom Field 2 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_2_OPTION_ID" }{ "label": "Backfill Order Custom Field 3 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_3_OPTION_ID" }{ "label": "Backfill Order Custom Field 4 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_4_OPTION_ID" }{ "label": "Backfill Order Custom Field 5 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_5_OPTION_ID" }{ "label": "Backfill Order Custom Field 6 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_6_OPTION_ID" }{ "label": "Backfill Order Custom Field 7 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_7_OPTION_ID" }{ "label": "Backfill Order Custom Field 8 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_8_OPTION_ID" }{ "label": "Backfill Order Custom Field 9 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_9_OPTION_ID" }{ "label": "Backfill Order Custom Field 10 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_10_OPTION_ID" }{ "label": "Backfill Order Custom Field 11 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_11_OPTION_ID" }{ "label": "Backfill Order Custom Field 12 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_12_OPTION_ID" }{ "label": "Backfill Order Custom Field 13 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_13_OPTION_ID" }{ "label": "Backfill Order Custom Field 14 Option ID", "value": "BACKFILL_ORDER_CUSTOM_FIELD_14_OPTION_ID" }{ "label": "Backfill Order Custom Field 0 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_0_VALUE" }{ "label": "Backfill Order Custom Field 1 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_1_VALUE" }{ "label": "Backfill Order Custom Field 2 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_2_VALUE" }{ "label": "Backfill Order Custom Field 3 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_3_VALUE" }{ "label": "Backfill Order Custom Field 4 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_4_VALUE" }{ "label": "Backfill Order Custom Field 5 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_5_VALUE" }{ "label": "Backfill Order Custom Field 6 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_6_VALUE" }{ "label": "Backfill Order Custom Field 7 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_7_VALUE" }{ "label": "Backfill Order Custom Field 8 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_8_VALUE" }{ "label": "Backfill Order Custom Field 9 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_9_VALUE" }{ "label": "Backfill Order Custom Field 10 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_10_VALUE" }{ "label": "Backfill Order Custom Field 11 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_11_VALUE" }{ "label": "Backfill Order Custom Field 12 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_12_VALUE" }{ "label": "Backfill Order Custom Field 13 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_13_VALUE" }{ "label": "Backfill Order Custom Field 14 Value", "value": "BACKFILL_ORDER_CUSTOM_FIELD_14_VALUE" }{ "label": "Backfill Creative Custom Field 0 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_0_OPTION_ID" }{ "label": "Backfill Creative Custom Field 1 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_1_OPTION_ID" }{ "label": "Backfill Creative Custom Field 2 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_2_OPTION_ID" }{ "label": "Backfill Creative Custom Field 3 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_3_OPTION_ID" }{ "label": "Backfill Creative Custom Field 4 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_4_OPTION_ID" }{ "label": "Backfill Creative Custom Field 5 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_5_OPTION_ID" }{ "label": "Backfill Creative Custom Field 6 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_6_OPTION_ID" }{ "label": "Backfill Creative Custom Field 7 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_7_OPTION_ID" }{ "label": "Backfill Creative Custom Field 8 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_8_OPTION_ID" }{ "label": "Backfill Creative Custom Field 9 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_9_OPTION_ID" }{ "label": "Backfill Creative Custom Field 10 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_10_OPTION_ID" }{ "label": "Backfill Creative Custom Field 11 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_11_OPTION_ID" }{ "label": "Backfill Creative Custom Field 12 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_12_OPTION_ID" }{ "label": "Backfill Creative Custom Field 13 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_13_OPTION_ID" }{ "label": "Backfill Creative Custom Field 14 Option ID", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_14_OPTION_ID" }{ "label": "Backfill Creative Custom Field 0 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_0_VALUE" }{ "label": "Backfill Creative Custom Field 1 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_1_VALUE" }{ "label": "Backfill Creative Custom Field 2 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_2_VALUE" }{ "label": "Backfill Creative Custom Field 3 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_3_VALUE" }{ "label": "Backfill Creative Custom Field 4 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_4_VALUE" }{ "label": "Backfill Creative Custom Field 5 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_5_VALUE" }{ "label": "Backfill Creative Custom Field 6 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_6_VALUE" }{ "label": "Backfill Creative Custom Field 7 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_7_VALUE" }{ "label": "Backfill Creative Custom Field 8 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_8_VALUE" }{ "label": "Backfill Creative Custom Field 9 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_9_VALUE" }{ "label": "Backfill Creative Custom Field 10 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_10_VALUE" }{ "label": "Backfill Creative Custom Field 11 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_11_VALUE" }{ "label": "Backfill Creative Custom Field 12 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_12_VALUE" }{ "label": "Backfill Creative Custom Field 13 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_13_VALUE" }{ "label": "Backfill Creative Custom Field 14 Value", "value": "BACKFILL_CREATIVE_CUSTOM_FIELD_14_VALUE" }{ "label": "Custom Dimension 0 Value ID", "value": "CUSTOM_DIMENSION_0_VALUE_ID" }{ "label": "Custom Dimension 1 Value ID", "value": "CUSTOM_DIMENSION_1_VALUE_ID" }{ "label": "Custom Dimension 2 Value ID", "value": "CUSTOM_DIMENSION_2_VALUE_ID" }{ "label": "Custom Dimension 3 Value ID", "value": "CUSTOM_DIMENSION_3_VALUE_ID" }{ "label": "Custom Dimension 4 Value ID", "value": "CUSTOM_DIMENSION_4_VALUE_ID" }{ "label": "Custom Dimension 5 Value ID", "value": "CUSTOM_DIMENSION_5_VALUE_ID" }{ "label": "Custom Dimension 6 Value ID", "value": "CUSTOM_DIMENSION_6_VALUE_ID" }{ "label": "Custom Dimension 7 Value ID", "value": "CUSTOM_DIMENSION_7_VALUE_ID" }{ "label": "Custom Dimension 8 Value ID", "value": "CUSTOM_DIMENSION_8_VALUE_ID" }{ "label": "Custom Dimension 9 Value ID", "value": "CUSTOM_DIMENSION_9_VALUE_ID" }{ "label": "Custom Dimension 0 Value", "value": "CUSTOM_DIMENSION_0_VALUE" }{ "label": "Custom Dimension 1 Value", "value": "CUSTOM_DIMENSION_1_VALUE" }{ "label": "Custom Dimension 2 Value", "value": "CUSTOM_DIMENSION_2_VALUE" }{ "label": "Custom Dimension 3 Value", "value": "CUSTOM_DIMENSION_3_VALUE" }{ "label": "Custom Dimension 4 Value", "value": "CUSTOM_DIMENSION_4_VALUE" }{ "label": "Custom Dimension 5 Value", "value": "CUSTOM_DIMENSION_5_VALUE" }{ "label": "Custom Dimension 6 Value", "value": "CUSTOM_DIMENSION_6_VALUE" }{ "label": "Custom Dimension 7 Value", "value": "CUSTOM_DIMENSION_7_VALUE" }{ "label": "Custom Dimension 8 Value", "value": "CUSTOM_DIMENSION_8_VALUE" }{ "label": "Custom Dimension 9 Value", "value": "CUSTOM_DIMENSION_9_VALUE" }
Metricsmetricsstring[]Select a value from the drop down menu:{ "label": "Metric Unspecified", "value": "METRIC_UNSPECIFIED" }{ "label": "Active View Average Viewable Time", "value": "ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME" }{ "label": "Active View Eligible Impressions", "value": "ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS" }{ "label": "Active View Measurable Impressions", "value": "ACTIVE_VIEW_MEASURABLE_IMPRESSIONS" }{ "label": "Active View Measurable Impressions Rate", "value": "ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE" }{ "label": "Active View Viewable Impressions", "value": "ACTIVE_VIEW_VIEWABLE_IMPRESSIONS" }{ "label": "Active View Viewable Impressions Rate", "value": "ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE" }{ "label": "AdSense Active View Average Viewable Time", "value": "ADSENSE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME" }{ "label": "AdSense Active View Eligible Impressions", "value": "ADSENSE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS" }{ "label": "AdSense Active View Measurable Impressions", "value": "ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS" }{ "label": "AdSense Active View Measurable Impressions Rate", "value": "ADSENSE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE" }{ "label": "AdSense Active View Viewable Impressions", "value": "ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS" }{ "label": "AdSense Active View Viewable Impressions Rate", "value": "ADSENSE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE" }{ "label": "AdSense Average eCPM", "value": "ADSENSE_AVERAGE_ECPM" }{ "label": "AdSense Clicks", "value": "ADSENSE_CLICKS" }{ "label": "AdSense CTR", "value": "ADSENSE_CTR" }{ "label": "AdSense Impressions", "value": "ADSENSE_IMPRESSIONS" }{ "label": "AdSense Percent Clicks", "value": "ADSENSE_PERCENT_CLICKS" }{ "label": "AdSense Percent Impressions", "value": "ADSENSE_PERCENT_IMPRESSIONS" }{ "label": "AdSense Percent Revenue", "value": "ADSENSE_PERCENT_REVENUE" }{ "label": "AdSense Percent Revenue Without CPD", "value": "ADSENSE_PERCENT_REVENUE_WITHOUT_CPD" }{ "label": "AdSense Responses Served", "value": "ADSENSE_RESPONSES_SERVED" }{ "label": "AdSense Revenue", "value": "ADSENSE_REVENUE" }{ "label": "Ad Exchange Active View Average Viewable Time", "value": "AD_EXCHANGE_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME" }{ "label": "Ad Exchange Active View Eligible Impressions", "value": "AD_EXCHANGE_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS" }{ "label": "Ad Exchange Active View Measurable Impressions", "value": "AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS" }{ "label": "Ad Exchange Active View Measurable Impressions Rate", "value": "AD_EXCHANGE_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE" }{ "label": "Ad Exchange Active View Viewable Impressions", "value": "AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS" }{ "label": "Ad Exchange Active View Viewable Impressions Rate", "value": "AD_EXCHANGE_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE" }{ "label": "Ad Exchange Average eCPM", "value": "AD_EXCHANGE_AVERAGE_ECPM" }{ "label": "Ad Exchange Clicks", "value": "AD_EXCHANGE_CLICKS" }{ "label": "Ad Exchange CTR", "value": "AD_EXCHANGE_CTR" }{ "label": "Ad Exchange Impressions", "value": "AD_EXCHANGE_IMPRESSIONS" }{ "label": "Ad Exchange Percent Clicks", "value": "AD_EXCHANGE_PERCENT_CLICKS" }{ "label": "Ad Exchange Percent Impressions", "value": "AD_EXCHANGE_PERCENT_IMPRESSIONS" }{ "label": "Ad Exchange Percent Revenue", "value": "AD_EXCHANGE_PERCENT_REVENUE" }{ "label": "Ad Exchange Percent Revenue Without CPD", "value": "AD_EXCHANGE_PERCENT_REVENUE_WITHOUT_CPD" }{ "label": "Ad Exchange Responses Served", "value": "AD_EXCHANGE_RESPONSES_SERVED" }{ "label": "Ad Exchange Revenue", "value": "AD_EXCHANGE_REVENUE" }{ "label": "Ad Requests", "value": "AD_REQUESTS" }{ "label": "Ad Server Active View Average Viewable Time", "value": "AD_SERVER_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME" }{ "label": "Ad Server Active View Eligible Impressions", "value": "AD_SERVER_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS" }{ "label": "Ad Server Active View Measurable Impressions", "value": "AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS" }{ "label": "Ad Server Active View Measurable Impressions Rate", "value": "AD_SERVER_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS_RATE" }{ "label": "Ad Server Active View Viewable Impressions", "value": "AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS" }{ "label": "Ad Server Active View Viewable Impressions Rate", "value": "AD_SERVER_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS_RATE" }{ "label": "Ad Server Average eCPM", "value": "AD_SERVER_AVERAGE_ECPM" }{ "label": "Ad Server Average eCPM Without CPD", "value": "AD_SERVER_AVERAGE_ECPM_WITHOUT_CPD" }{ "label": "Ad Server Clicks", "value": "AD_SERVER_CLICKS" }{ "label": "Ad Server CPD Revenue", "value": "AD_SERVER_CPD_REVENUE" }{ "label": "Ad Server CTR", "value": "AD_SERVER_CTR" }{ "label": "Ad Server Impressions", "value": "AD_SERVER_IMPRESSIONS" }{ "label": "Ad Server Percent Clicks", "value": "AD_SERVER_PERCENT_CLICKS" }{ "label": "Ad Server Percent Impressions", "value": "AD_SERVER_PERCENT_IMPRESSIONS" }{ "label": "Ad Server Percent Revenue", "value": "AD_SERVER_PERCENT_REVENUE" }{ "label": "Ad Server Percent Revenue Without CPD", "value": "AD_SERVER_PERCENT_REVENUE_WITHOUT_CPD" }{ "label": "Ad Server Responses Served", "value": "AD_SERVER_RESPONSES_SERVED" }{ "label": "Ad Server Revenue", "value": "AD_SERVER_REVENUE" }{ "label": "Ad Server Revenue Without CPD", "value": "AD_SERVER_REVENUE_WITHOUT_CPD" }{ "label": "Auctions Won", "value": "AUCTIONS_WON" }{ "label": "Average eCPM", "value": "AVERAGE_ECPM" }{ "label": "Average eCPM Without CPD", "value": "AVERAGE_ECPM_WITHOUT_CPD" }{ "label": "Bids", "value": "BIDS" }{ "label": "Bids in Auction", "value": "BIDS_IN_AUCTION" }{ "label": "Callouts", "value": "CALLOUTS" }{ "label": "Clicks", "value": "CLICKS" }{ "label": "Code Served Count", "value": "CODE_SERVED_COUNT" }{ "label": "CTR", "value": "CTR" }{ "label": "Google Sold Auction Coviewed Impressions", "value": "GOOGLE_SOLD_AUCTION_COVIEWED_IMPRESSIONS" }{ "label": "Google Sold Auction Impressions", "value": "GOOGLE_SOLD_AUCTION_IMPRESSIONS" }{ "label": "Google Sold Coviewed Impressions", "value": "GOOGLE_SOLD_COVIEWED_IMPRESSIONS" }{ "label": "Google Sold Impressions", "value": "GOOGLE_SOLD_IMPRESSIONS" }{ "label": "Google Sold Reservation Coviewed Impressions", "value": "GOOGLE_SOLD_RESERVATION_COVIEWED_IMPRESSIONS" }{ "label": "Google Sold Reservation Impressions", "value": "GOOGLE_SOLD_RESERVATION_IMPRESSIONS" }{ "label": "Impressions", "value": "IMPRESSIONS" }{ "label": "Partner Sales Filled Pod Requests", "value": "PARTNER_SALES_FILLED_POD_REQUESTS" }{ "label": "Partner Sales Fill Rate", "value": "PARTNER_SALES_FILL_RATE" }{ "label": "Partner Sales Partner Match Rate", "value": "PARTNER_SALES_PARTNER_MATCH_RATE" }{ "label": "Partner Sales Queries", "value": "PARTNER_SALES_QUERIES" }{ "label": "Partner Sales Unfilled Impressions", "value": "PARTNER_SALES_UNFILLED_IMPRESSIONS" }{ "label": "Partner Sales Unmatched Queries", "value": "PARTNER_SALES_UNMATCHED_QUERIES" }{ "label": "Partner Sold Code Served", "value": "PARTNER_SOLD_CODE_SERVED" }{ "label": "Partner Sold Coviewed Impressions", "value": "PARTNER_SOLD_COVIEWED_IMPRESSIONS" }{ "label": "Partner Sold Impressions", "value": "PARTNER_SOLD_IMPRESSIONS" }{ "label": "Programmatic Eligible Ad Requests", "value": "PROGRAMMATIC_ELIGIBLE_AD_REQUESTS" }{ "label": "Programmatic Match Rate", "value": "PROGRAMMATIC_MATCH_RATE" }{ "label": "Programmatic Responses Served", "value": "PROGRAMMATIC_RESPONSES_SERVED" }{ "label": "Responses Served", "value": "RESPONSES_SERVED" }{ "label": "Revenue", "value": "REVENUE" }{ "label": "Revenue Without CPD", "value": "REVENUE_WITHOUT_CPD" }{ "label": "Successful Responses", "value": "SUCCESSFUL_RESPONSES" }{ "label": "Unfilled Impressions", "value": "UNFILLED_IMPRESSIONS" }{ "label": "Unmatched Ad Requests", "value": "UNMATCHED_AD_REQUESTS" }{ "label": "User Messages Offerwall Messages Shown", "value": "USER_MESSAGES_OFFERWALL_MESSAGES_SHOWN" }{ "label": "User Messages Offerwall Successful Engagements", "value": "USER_MESSAGES_OFFERWALL_SUCCESSFUL_ENGAGEMENTS" }{ "label": "Video Interaction Average Interaction Rate", "value": "VIDEO_INTERACTION_AVERAGE_INTERACTION_RATE" }{ "label": "Video Interaction Collapses", "value": "VIDEO_INTERACTION_COLLAPSES" }{ "label": "Video Interaction Expands", "value": "VIDEO_INTERACTION_EXPANDS" }{ "label": "Video Interaction Full Screens", "value": "VIDEO_INTERACTION_FULL_SCREENS" }{ "label": "Video Interaction Mutes", "value": "VIDEO_INTERACTION_MUTES" }{ "label": "Video Interaction Pauses", "value": "VIDEO_INTERACTION_PAUSES" }{ "label": "Video Interaction Resumes", "value": "VIDEO_INTERACTION_RESUMES" }{ "label": "Video Interaction Rewinds", "value": "VIDEO_INTERACTION_REWINDS" }{ "label": "Video Interaction Unmutes", "value": "VIDEO_INTERACTION_UNMUTES" }{ "label": "Video Interaction Video Skips", "value": "VIDEO_INTERACTION_VIDEO_SKIPS" }{ "label": "Video Real Time Creative Serves", "value": "VIDEO_REAL_TIME_CREATIVE_SERVES" }{ "label": "Video Real Time Error 100 Count", "value": "VIDEO_REAL_TIME_ERROR_100_COUNT" }{ "label": "Video Real Time Error 101 Count", "value": "VIDEO_REAL_TIME_ERROR_101_COUNT" }{ "label": "Video Real Time Error 102 Count", "value": "VIDEO_REAL_TIME_ERROR_102_COUNT" }{ "label": "Video Real Time Error 200 Count", "value": "VIDEO_REAL_TIME_ERROR_200_COUNT" }{ "label": "Video Real Time Error 201 Count", "value": "VIDEO_REAL_TIME_ERROR_201_COUNT" }{ "label": "Video Real Time Error 202 Count", "value": "VIDEO_REAL_TIME_ERROR_202_COUNT" }{ "label": "Video Real Time Error 203 Count", "value": "VIDEO_REAL_TIME_ERROR_203_COUNT" }{ "label": "Video Real Time Error 300 Count", "value": "VIDEO_REAL_TIME_ERROR_300_COUNT" }{ "label": "Video Real Time Error 301 Count", "value": "VIDEO_REAL_TIME_ERROR_301_COUNT" }{ "label": "Video Real Time Error 302 Count", "value": "VIDEO_REAL_TIME_ERROR_302_COUNT" }{ "label": "Video Real Time Error 303 Count", "value": "VIDEO_REAL_TIME_ERROR_303_COUNT" }{ "label": "Video Real Time Error 400 Count", "value": "VIDEO_REAL_TIME_ERROR_400_COUNT" }{ "label": "Video Real Time Error 401 Count", "value": "VIDEO_REAL_TIME_ERROR_401_COUNT" }{ "label": "Video Real Time Error 402 Count", "value": "VIDEO_REAL_TIME_ERROR_402_COUNT" }{ "label": "Video Real Time Error 403 Count", "value": "VIDEO_REAL_TIME_ERROR_403_COUNT" }{ "label": "Video Real Time Error 405 Count", "value": "VIDEO_REAL_TIME_ERROR_405_COUNT" }{ "label": "Video Real Time Error 406 Count", "value": "VIDEO_REAL_TIME_ERROR_406_COUNT" }{ "label": "Video Real Time Error 407 Count", "value": "VIDEO_REAL_TIME_ERROR_407_COUNT" }{ "label": "Video Real Time Error 408 Count", "value": "VIDEO_REAL_TIME_ERROR_408_COUNT" }{ "label": "Video Real Time Error 409 Count", "value": "VIDEO_REAL_TIME_ERROR_409_COUNT" }{ "label": "Video Real Time Error 410 Count", "value": "VIDEO_REAL_TIME_ERROR_410_COUNT" }{ "label": "Video Real Time Error 500 Count", "value": "VIDEO_REAL_TIME_ERROR_500_COUNT" }{ "label": "Video Real Time Error 501 Count", "value": "VIDEO_REAL_TIME_ERROR_501_COUNT" }{ "label": "Video Real Time Error 502 Count", "value": "VIDEO_REAL_TIME_ERROR_502_COUNT" }{ "label": "Video Real Time Error 503 Count", "value": "VIDEO_REAL_TIME_ERROR_503_COUNT" }{ "label": "Video Real Time Error 600 Count", "value": "VIDEO_REAL_TIME_ERROR_600_COUNT" }{ "label": "Video Real Time Error 601 Count", "value": "VIDEO_REAL_TIME_ERROR_601_COUNT" }{ "label": "Video Real Time Error 602 Count", "value": "VIDEO_REAL_TIME_ERROR_602_COUNT" }{ "label": "Video Real Time Error 603 Count", "value": "VIDEO_REAL_TIME_ERROR_603_COUNT" }{ "label": "Video Real Time Error 604 Count", "value": "VIDEO_REAL_TIME_ERROR_604_COUNT" }{ "label": "Video Real Time Error 900 Count", "value": "VIDEO_REAL_TIME_ERROR_900_COUNT" }{ "label": "Video Real Time Error 901 Count", "value": "VIDEO_REAL_TIME_ERROR_901_COUNT" }{ "label": "Video Real Time Impressions", "value": "VIDEO_REAL_TIME_IMPRESSIONS" }{ "label": "Video Real Time Matched Queries", "value": "VIDEO_REAL_TIME_MATCHED_QUERIES" }{ "label": "Video Real Time Total Error Count", "value": "VIDEO_REAL_TIME_TOTAL_ERROR_COUNT" }{ "label": "Video Real Time Total Queries", "value": "VIDEO_REAL_TIME_TOTAL_QUERIES" }{ "label": "Video Real Time Unmatched Queries", "value": "VIDEO_REAL_TIME_UNMATCHED_QUERIES" }{ "label": "Video Viewership Auto Plays", "value": "VIDEO_VIEWERSHIP_AUTO_PLAYS" }{ "label": "Video Viewership Average View Rate", "value": "VIDEO_VIEWERSHIP_AVERAGE_VIEW_RATE" }{ "label": "Video Viewership Average View Time", "value": "VIDEO_VIEWERSHIP_AVERAGE_VIEW_TIME" }{ "label": "Video Viewership Click to Plays", "value": "VIDEO_VIEWERSHIP_CLICK_TO_PLAYS" }{ "label": "Video Viewership Completes", "value": "VIDEO_VIEWERSHIP_COMPLETES" }{ "label": "Video Viewership Completion Rate", "value": "VIDEO_VIEWERSHIP_COMPLETION_RATE" }{ "label": "Video Viewership Engaged Views", "value": "VIDEO_VIEWERSHIP_ENGAGED_VIEWS" }{ "label": "Video Viewership First Quartiles", "value": "VIDEO_VIEWERSHIP_FIRST_QUARTILES" }{ "label": "Video Viewership Midpoints", "value": "VIDEO_VIEWERSHIP_MIDPOINTS" }{ "label": "Video Viewership Skip Buttons Shown", "value": "VIDEO_VIEWERSHIP_SKIP_BUTTONS_SHOWN" }{ "label": "Video Viewership Starts", "value": "VIDEO_VIEWERSHIP_STARTS" }{ "label": "Video Viewership Third Quartiles", "value": "VIDEO_VIEWERSHIP_THIRD_QUARTILES" }{ "label": "Video Viewership Total Error Count", "value": "VIDEO_VIEWERSHIP_TOTAL_ERROR_COUNT" }{ "label": "Video Viewership Total Error Rate", "value": "VIDEO_VIEWERSHIP_TOTAL_ERROR_RATE" }{ "label": "Video Viewership Video Length", "value": "VIDEO_VIEWERSHIP_VIDEO_LENGTH" }{ "label": "Video Viewership View Through Rate", "value": "VIDEO_VIEWERSHIP_VIEW_THROUGH_RATE" }{ "label": "Yield Group Estimated CPM", "value": "YIELD_GROUP_ESTIMATED_CPM" }{ "label": "Yield Group Estimated Revenue", "value": "YIELD_GROUP_ESTIMATED_REVENUE" }{ "label": "Yield Group Impressions", "value": "YIELD_GROUP_IMPRESSIONS" }{ "label": "Yield Group Mediation Fill Rate", "value": "YIELD_GROUP_MEDIATION_FILL_RATE" }{ "label": "Yield Group Mediation Matched Queries", "value": "YIELD_GROUP_MEDIATION_MATCHED_QUERIES" }{ "label": "Yield Group Mediation Passbacks", "value": "YIELD_GROUP_MEDIATION_PASSBACKS" }{ "label": "Yield Group Mediation Third Party ECPM", "value": "YIELD_GROUP_MEDIATION_THIRD_PARTY_ECPM" }
Filtersfiltersstring[]

The filters for this report. Each row must be formatted as a JSON object. See the documentation.

Time ZonetimeZonestring

The time zone the date range is defined in for this report. Defaults to publisher's time zone if not specified. Time zone in IANA format. Acceptable values depend on the report type. Publisher time zone is always accepted. Use America/Los_Angeles for pacific time, or Etc/UTC for UTC.

Currency CodecurrencyCodestring

The ISO 4217 currency code for this report. Defaults to publisher currency code if not specified.

Custom Dimension Key IDscustomDimensionKeyIdsstring[]

Custom Dimension keys that represent CUSTOM_DIMENSION_* dimensions. The index of this repeated field corresponds to the index on each dimension. For example, customDimensionKeyIds[0] describes CUSTOM_DIMENSION_0_VALUE_ID and CUSTOM_DIMENSION_0_VALUE.

Line Item Custom Field IDslineItemCustomFieldIdsstring[]

Custom field IDs that represent LINE_ITEM_CUSTOM_FIELD_* dimensions. The index of this repeated field corresponds to the index on each dimension. For example, lineItemCustomFieldIds[0] describes LINE_ITEM_CUSTOM_FIELD_0_OPTION_ID and LINE_ITEM_CUSTOM_FIELD_0_VALUE.

Order Custom Field IDsorderCustomFieldIdsstring[]

Custom field IDs that represent ORDER_CUSTOM_FIELD_* dimensions. The index of this repeated field corresponds to the index on each dimension. For example, orderCustomFieldIds[0] describes ORDER_CUSTOM_FIELD_0_OPTION_ID and ORDER_CUSTOM_FIELD_0_VALUE.

Creative Custom Field IDscreativeCustomFieldIdsstring[]

Custom field IDs that represent CREATIVE_CUSTOM_FIELD_* dimensions. The index of this repeated field corresponds to the index on each dimension. For example, creativeCustomFieldIds[0] describes CREATIVE_CUSTOM_FIELD_0_OPTION_ID and CREATIVE_CUSTOM_FIELD_0_VALUE.

Report TypereportTypestringSelect a value from the drop down menu:REPORT_TYPE_UNSPECIFIEDHISTORICAL
Time Period ColumntimePeriodColumnstringSelect a value from the drop down menu:TIME_PERIOD_COLUMN_UNSPECIFIEDTIME_PERIOD_COLUMN_DATETIME_PERIOD_COLUMN_WEEKTIME_PERIOD_COLUMN_MONTHTIME_PERIOD_COLUMN_QUARTER
Flagsflagsstring[]

List of flags for this report. Used to flag rows in a result set based on a set of defined filters. Each row must be formatted as a JSON object. See the documentation.

Sortssortsstring[]

Default sorts to apply to this report. Each row must be formatted as a JSON object. See the documentation.

Date Range TypedateRangestringSelect a value from the drop down menu:fixedrelative
Comparison Date Range TypecomparisonDateRangestringSelect a value from the drop down menu:fixedrelative

Action Authentication

Google Ad Manager uses OAuth authentication. When you connect your Google Ad Manager account, Pipedream will open a popup window where you can sign into Google Ad Manager and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Google Ad Manager API.

Pipedream requests the following authorization scopes when you connect your account:

https://www.googleapis.com/auth/admanageremailprofileopenid

About Google Ad Manager

Integrated Advertising Management Platform

More Ways to Connect Google Ad Manager + Discord

Create Report with Google Ad Manager API on Message Deleted (Instant) from Discord API
Discord + Google Ad Manager
 
Try it
Create Report with Google Ad Manager API on New Command Received (Instant) from Discord API
Discord + Google Ad Manager
 
Try it
Create Report with Google Ad Manager API on New Guild Member (Instant) from Discord API
Discord + Google Ad Manager
 
Try it
Create Report with Google Ad Manager API on Reaction Added (Instant) from Discord API
Discord + Google Ad Manager
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Reaction Added (Instant) from the Discord API

Emit new event for each reaction added to a message

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it
Send Message With File with the Discord API

Post a message with an attached file

 
Try it
Create Report with the Google Ad Manager API

Create a report in Google Ad Manager. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,400+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce
Salesforce
Web services API for interacting with Salesforce
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.