← ElevenLabs + Google Merchant Center integrations

Create Product with Google Merchant Center API on New History Item Created from ElevenLabs API

Pipedream makes it easy to connect APIs for Google Merchant Center, ElevenLabs and 2,800+ other apps remarkably fast.

Trigger workflow on
New History Item Created from the ElevenLabs API
Next, do this
Create Product with the Google Merchant Center 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 ElevenLabs trigger and Google Merchant Center 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 History Item Created trigger
    1. Connect your ElevenLabs account
    2. Configure Polling interval
  3. Configure the Create Product action
    1. Connect your Google Merchant Center account
    2. Configure Offer ID
    3. Optional- Configure Title
    4. Optional- Configure Description
    5. Select a Content Language
    6. Select a Target Country
    7. Select a Channel
    8. Optional- Configure Additional Options
  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 when a new history item is created.
Version:0.0.4
Key:elevenlabs-new-history-item

ElevenLabs Overview

The ElevenLabs API offers text-to-speech capabilities with realistic voice synthesis. Integrating this API on Pipedream allows you to build automated workflows that convert text content into spoken audio files. You can trigger these conversions from various events, process the text data, send it to the ElevenLabs API, and handle the audio output—all within a serverless environment.

Trigger Code

import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
import elevenlabs from "../../elevenlabs.app.mjs";

export default {
  key: "elevenlabs-new-history-item",
  name: "New History Item Created",
  version: "0.0.4",
  description: "Emit new event when a new history item is created.",
  type: "source",
  dedupe: "unique",
  props: {
    elevenlabs,
    db: "$.service.db",
    timer: {
      label: "Polling interval",
      description: "Pipedream will poll the ElevenLabs on this schedule",
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
  },
  methods: {
    _getLastId() {
      return this.db.get("lastId");
    },
    _setLastId(lastId) {
      this.db.set("lastId", lastId);
    },
    async startEvent(maxResults) {
      const lastId = this._getLastId();
      let responseArray = [];

      const items = this.elevenlabs.paginate({
        fn: this.elevenlabs.listHistoryItems,
        maxResults,
      });

      for await (const item of items) {
        if (item.history_item_id === lastId) {
          break;
        }
        responseArray.push(item);
      }

      if (responseArray[0]) {
        this._setLastId(responseArray[0].history_item_id);
      }

      for (const responseItem of responseArray.reverse()) {
        this.$emit(
          responseItem,
          {
            id: responseItem.history_item_id,
            summary: `A item with id: "${responseItem.history_item_id}" was created!`,
            ts: responseItem.date_unix,
          },
        );
      }
    },
  },
  hooks: {
    async deploy() {
      await this.startEvent(25);
    },
  },
  async run() {
    await this.startEvent();
  },
};

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
ElevenLabselevenlabsappThis component uses the ElevenLabs app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Polling intervaltimer$.interface.timer

Pipedream will poll the ElevenLabs on this schedule

Trigger Authentication

ElevenLabs uses API keys for authentication. When you connect your ElevenLabs account, Pipedream securely stores the keys so you can easily authenticate to ElevenLabs APIs in both code and no-code steps.

To retrieve your API Key,

  • Navigate to your ElevenLabs account and sign in
  • Click the dropdown on the top right
  • Go to “Profile” > “API Key”

About ElevenLabs

Research lab exploring new frontiers of Voice AI. Deploying tools for prime long-form synthetic speech, voice cloning and automatic dubbing.

Action

Description:Creates a product in your Google Merchant Center account. [See the documentation](https://developers.google.com/shopping-content/reference/rest/v2.1/products/insert)
Version:0.0.1
Key:google_merchant_center-create-product

Google Merchant Center Overview

The Google Merchant Center API allows for programmatic interaction with your Google Merchant account, enabling data uploads, fetching product status, and managing listings directly. By leveraging this API within Pipedream, you can automate numerous tasks, such as syncing inventory levels, updating pricing, or managing product information across platforms.

Action Code

import {
  LANGUAGE_OPTIONS, TERRITORY_OPTIONS,
} from "../../common/constants.mjs";
import googleMerchant from "../../google_merchant_center.app.mjs";

export default {
  key: "google_merchant_center-create-product",
  name: "Create Product",
  description: "Creates a product in your Google Merchant Center account. [See the documentation](https://developers.google.com/shopping-content/reference/rest/v2.1/products/insert)",
  version: "0.0.1",
  type: "action",
  props: {
    googleMerchant,
    offerId: {
      type: "string",
      label: "Offer ID",
      description: "A unique identifier for the item. Leading and trailing whitespaces are stripped and multiple whitespaces are replaced by a single whitespace upon submission. Only valid unicode characters are accepted. See the [products feed specification](https://support.google.com/merchants/answer/188494#id) for details.",
    },
    title: {
      type: "string",
      label: "Title",
      description: "Your product's name. Max 150 characters",
      optional: true,
    },
    description: {
      type: "string",
      label: "Description",
      description: "Your product's description. Max 5000 characters",
      optional: true,
    },
    contentLanguage: {
      type: "string",
      label: "Content Language",
      description: "The [two-letter ISO 639-1 language code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) for the item.",
      options: LANGUAGE_OPTIONS,
    },
    targetCountry: {
      type: "string",
      label: "Target Country",
      description: "The [CLDR territory code](https://github.com/unicode-org/cldr/blob/latest/common/main/en.xml) for the item's country of sale.",
      options: TERRITORY_OPTIONS,
    },
    channel: {
      type: "string",
      label: "Channel",
      description: "The item's channel (online or local).",
      options: [
        "local",
        "online",
      ],
    },
    additionalOptions: {
      type: "object",
      label: "Additional Options",
      description: "Additional options for the product. If a value is not a string, it will be parsed as JSON. [See the documentation here](https://developers.google.com/shopping-content/reference/rest/v2.1/products#Product)",
      optional: true,
    },
  },
  async run({ $ }) {
    const {
      additionalOptions, googleMerchant, ...data
    } = this;

    Object.entries(additionalOptions ?? {}).forEach(([
      key,
      value,
    ]) => {
      try {
        additionalOptions[key] = JSON.parse(value);
      } catch (e) {
        // ignore non-serializable values
      }
    });

    const response = await googleMerchant.createProduct({
      $,
      data: {
        ...data,
        ...additionalOptions,
      },
    });
    $.export("$summary", `Product ${response.id} created successfully`);
    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 Merchant CentergoogleMerchantappThis component uses the Google Merchant Center app.
Offer IDofferIdstring

A unique identifier for the item. Leading and trailing whitespaces are stripped and multiple whitespaces are replaced by a single whitespace upon submission. Only valid unicode characters are accepted. See the products feed specification for details.

Titletitlestring

Your product's name. Max 150 characters

Descriptiondescriptionstring

Your product's description. Max 5000 characters

Content LanguagecontentLanguagestringSelect a value from the drop down menu:{ "label": "Abkhazian", "value": "ab" }{ "label": "Afar", "value": "aa" }{ "label": "Afrikaans", "value": "af" }{ "label": "Akan", "value": "ak" }{ "label": "Albanian", "value": "sq" }{ "label": "Amharic", "value": "am" }{ "label": "Arabic", "value": "ar" }{ "label": "Aragonese", "value": "an" }{ "label": "Armenian", "value": "hy" }{ "label": "Assamese", "value": "as" }{ "label": "Avaric", "value": "av" }{ "label": "Avestan", "value": "ae" }{ "label": "Aymara", "value": "ay" }{ "label": "Azerbaijani", "value": "az" }{ "label": "Bambara", "value": "bm" }{ "label": "Bashkir", "value": "ba" }{ "label": "Basque", "value": "eu" }{ "label": "Belarusian", "value": "be" }{ "label": "Bengali", "value": "bn" }{ "label": "Bislama", "value": "bi" }{ "label": "Bosnian", "value": "bs" }{ "label": "Breton", "value": "br" }{ "label": "Bulgarian", "value": "bg" }{ "label": "Burmese", "value": "my" }{ "label": "Catalan, Valencian", "value": "ca" }{ "label": "Chamorro", "value": "ch" }{ "label": "Chechen", "value": "ce" }{ "label": "Chichewa, Chewa, Nyanja", "value": "ny" }{ "label": "Chinese", "value": "zh" }{ "label": "Church Slavonic, Old Slavonic, Old Church Slavonic", "value": "cu" }{ "label": "Chuvash", "value": "cv" }{ "label": "Cornish", "value": "kw" }{ "label": "Corsican", "value": "co" }{ "label": "Cree", "value": "cr" }{ "label": "Croatian", "value": "hr" }{ "label": "Czech", "value": "cs" }{ "label": "Danish", "value": "da" }{ "label": "Divehi, Dhivehi, Maldivian", "value": "dv" }{ "label": "Dutch, Flemish", "value": "nl" }{ "label": "Dzongkha", "value": "dz" }{ "label": "English", "value": "en" }{ "label": "Esperanto", "value": "eo" }{ "label": "Estonian", "value": "et" }{ "label": "Ewe", "value": "ee" }{ "label": "Faroese", "value": "fo" }{ "label": "Fijian", "value": "fj" }{ "label": "Finnish", "value": "fi" }{ "label": "French", "value": "fr" }{ "label": "Western Frisian", "value": "fy" }{ "label": "Fulah", "value": "ff" }{ "label": "Gaelic, Scottish Gaelic", "value": "gd" }{ "label": "Galician", "value": "gl" }{ "label": "Ganda", "value": "lg" }{ "label": "Georgian", "value": "ka" }{ "label": "German", "value": "de" }{ "label": "Greek, Modern (1453–)", "value": "el" }{ "label": "Kalaallisut, Greenlandic", "value": "kl" }{ "label": "Guarani", "value": "gn" }{ "label": "Gujarati", "value": "gu" }{ "label": "Haitian, Haitian Creole", "value": "ht" }{ "label": "Hausa", "value": "ha" }{ "label": "Hebrew", "value": "he" }{ "label": "Herero", "value": "hz" }{ "label": "Hindi", "value": "hi" }{ "label": "Hiri Motu", "value": "ho" }{ "label": "Hungarian", "value": "hu" }{ "label": "Icelandic", "value": "is" }{ "label": "Ido", "value": "io" }{ "label": "Igbo", "value": "ig" }{ "label": "Indonesian", "value": "id" }{ "label": "Interlingua (International Auxiliary Language Association)", "value": "ia" }{ "label": "Interlingue, Occidental", "value": "ie" }{ "label": "Inuktitut", "value": "iu" }{ "label": "Inupiaq", "value": "ik" }{ "label": "Irish", "value": "ga" }{ "label": "Italian", "value": "it" }{ "label": "Japanese", "value": "ja" }{ "label": "Javanese", "value": "jv" }{ "label": "Kannada", "value": "kn" }{ "label": "Kanuri", "value": "kr" }{ "label": "Kashmiri", "value": "ks" }{ "label": "Kazakh", "value": "kk" }{ "label": "Central Khmer", "value": "km" }{ "label": "Kikuyu, Gikuyu", "value": "ki" }{ "label": "Kinyarwanda", "value": "rw" }{ "label": "Kirghiz, Kyrgyz", "value": "ky" }{ "label": "Komi", "value": "kv" }{ "label": "Kongo", "value": "kg" }{ "label": "Korean", "value": "ko" }{ "label": "Kuanyama, Kwanyama", "value": "kj" }{ "label": "Kurdish", "value": "ku" }{ "label": "Lao", "value": "lo" }{ "label": "Latin", "value": "la" }{ "label": "Latvian", "value": "lv" }{ "label": "Limburgan, Limburger, Limburgish", "value": "li" }{ "label": "Lingala", "value": "ln" }{ "label": "Lithuanian", "value": "lt" }{ "label": "Luba-Katanga", "value": "lu" }{ "label": "Luxembourgish, Letzeburgesch", "value": "lb" }{ "label": "Macedonian", "value": "mk" }{ "label": "Malagasy", "value": "mg" }{ "label": "Malay", "value": "ms" }{ "label": "Malayalam", "value": "ml" }{ "label": "Maltese", "value": "mt" }{ "label": "Manx", "value": "gv" }{ "label": "Maori", "value": "mi" }{ "label": "Marathi", "value": "mr" }{ "label": "Marshallese", "value": "mh" }{ "label": "Mongolian", "value": "mn" }{ "label": "Nauru", "value": "na" }{ "label": "Navajo, Navaho", "value": "nv" }{ "label": "North Ndebele", "value": "nd" }{ "label": "South Ndebele", "value": "nr" }{ "label": "Ndonga", "value": "ng" }{ "label": "Nepali", "value": "ne" }{ "label": "Norwegian", "value": "no" }{ "label": "Norwegian Bokmål", "value": "nb" }{ "label": "Norwegian Nynorsk", "value": "nn" }{ "label": "Sichuan Yi, Nuosu", "value": "ii" }{ "label": "Occitan", "value": "oc" }{ "label": "Ojibwa", "value": "oj" }{ "label": "Oriya", "value": "or" }{ "label": "Oromo", "value": "om" }{ "label": "Ossetian, Ossetic", "value": "os" }{ "label": "Pali", "value": "pi" }{ "label": "Pashto, Pushto", "value": "ps" }{ "label": "Persian", "value": "fa" }{ "label": "Polish", "value": "pl" }{ "label": "Portuguese", "value": "pt" }{ "label": "Punjabi, Panjabi", "value": "pa" }{ "label": "Quechua", "value": "qu" }{ "label": "Romanian, Moldavian, Moldovan", "value": "ro" }{ "label": "Romansh", "value": "rm" }{ "label": "Rundi", "value": "rn" }{ "label": "Russian", "value": "ru" }{ "label": "Northern Sami", "value": "se" }{ "label": "Samoan", "value": "sm" }{ "label": "Sango", "value": "sg" }{ "label": "Sanskrit", "value": "sa" }{ "label": "Sardinian", "value": "sc" }{ "label": "Serbian", "value": "sr" }{ "label": "Shona", "value": "sn" }{ "label": "Sindhi", "value": "sd" }{ "label": "Sinhala, Sinhalese", "value": "si" }{ "label": "Slovak", "value": "sk" }{ "label": "Slovenian", "value": "sl" }{ "label": "Somali", "value": "so" }{ "label": "Southern Sotho", "value": "st" }{ "label": "Spanish, Castilian", "value": "es" }{ "label": "Sundanese", "value": "su" }{ "label": "Swahili", "value": "sw" }{ "label": "Swati", "value": "ss" }{ "label": "Swedish", "value": "sv" }{ "label": "Tagalog", "value": "tl" }{ "label": "Tahitian", "value": "ty" }{ "label": "Tajik", "value": "tg" }{ "label": "Tamil", "value": "ta" }{ "label": "Tatar", "value": "tt" }{ "label": "Telugu", "value": "te" }{ "label": "Thai", "value": "th" }{ "label": "Tibetan", "value": "bo" }{ "label": "Tigrinya", "value": "ti" }{ "label": "Tonga (Tonga Islands)", "value": "to" }{ "label": "Tsonga", "value": "ts" }{ "label": "Tswana", "value": "tn" }{ "label": "Turkish", "value": "tr" }{ "label": "Turkmen", "value": "tk" }{ "label": "Twi", "value": "tw" }{ "label": "Uighur, Uyghur", "value": "ug" }{ "label": "Ukrainian", "value": "uk" }{ "label": "Urdu", "value": "ur" }{ "label": "Uzbek", "value": "uz" }{ "label": "Venda", "value": "ve" }{ "label": "Vietnamese", "value": "vi" }{ "label": "Volapük", "value": "vo" }{ "label": "Walloon", "value": "wa" }{ "label": "Welsh", "value": "cy" }{ "label": "Wolof", "value": "wo" }{ "label": "Xhosa", "value": "xh" }{ "label": "Yiddish", "value": "yi" }{ "label": "Yoruba", "value": "yo" }{ "label": "Zhuang, Chuang", "value": "za" }{ "label": "Zulu", "value": "zu" }
Target CountrytargetCountrystringSelect a value from the drop down menu:{ "label": "World", "value": "001" }{ "label": "Africa", "value": "002" }{ "label": "North America", "value": "003" }{ "label": "South America", "value": "005" }{ "label": "Oceania", "value": "009" }{ "label": "Western Africa", "value": "011" }{ "label": "Central America", "value": "013" }{ "label": "Eastern Africa", "value": "014" }{ "label": "Northern Africa", "value": "015" }{ "label": "Middle Africa", "value": "017" }{ "label": "Southern Africa", "value": "018" }{ "label": "Americas", "value": "019" }{ "label": "Northern America", "value": "021" }{ "label": "Caribbean", "value": "029" }{ "label": "Eastern Asia", "value": "030" }{ "label": "Southern Asia", "value": "034" }{ "label": "Southeast Asia", "value": "035" }{ "label": "Southern Europe", "value": "039" }{ "label": "Australasia", "value": "053" }{ "label": "Melanesia", "value": "054" }{ "label": "Micronesian Region", "value": "057" }{ "label": "Polynesia", "value": "061" }{ "label": "Asia", "value": "142" }{ "label": "Central Asia", "value": "143" }{ "label": "Western Asia", "value": "145" }{ "label": "Europe", "value": "150" }{ "label": "Eastern Europe", "value": "151" }{ "label": "Northern Europe", "value": "154" }{ "label": "Western Europe", "value": "155" }{ "label": "Sub-Saharan Africa", "value": "202" }{ "label": "Latin America", "value": "419" }{ "label": "Ascension Island", "value": "AC" }{ "label": "Andorra", "value": "AD" }{ "label": "United Arab Emirates", "value": "AE" }{ "label": "Afghanistan", "value": "AF" }{ "label": "Antigua & Barbuda", "value": "AG" }{ "label": "Anguilla", "value": "AI" }{ "label": "Albania", "value": "AL" }{ "label": "Armenia", "value": "AM" }{ "label": "Angola", "value": "AO" }{ "label": "Antarctica", "value": "AQ" }{ "label": "Argentina", "value": "AR" }{ "label": "American Samoa", "value": "AS" }{ "label": "Austria", "value": "AT" }{ "label": "Australia", "value": "AU" }{ "label": "Aruba", "value": "AW" }{ "label": "Åland Islands", "value": "AX" }{ "label": "Azerbaijan", "value": "AZ" }{ "label": "Bosnia & Herzegovina", "value": "BA" }{ "label": "Barbados", "value": "BB" }{ "label": "Bangladesh", "value": "BD" }{ "label": "Belgium", "value": "BE" }{ "label": "Burkina Faso", "value": "BF" }{ "label": "Bulgaria", "value": "BG" }{ "label": "Bahrain", "value": "BH" }{ "label": "Burundi", "value": "BI" }{ "label": "Benin", "value": "BJ" }{ "label": "St. Barthélemy", "value": "BL" }{ "label": "Bermuda", "value": "BM" }{ "label": "Brunei", "value": "BN" }{ "label": "Bolivia", "value": "BO" }{ "label": "Caribbean Netherlands", "value": "BQ" }{ "label": "Brazil", "value": "BR" }{ "label": "Bahamas", "value": "BS" }{ "label": "Bhutan", "value": "BT" }{ "label": "Bouvet Island", "value": "BV" }{ "label": "Botswana", "value": "BW" }{ "label": "Belarus", "value": "BY" }{ "label": "Belize", "value": "BZ" }{ "label": "Canada", "value": "CA" }{ "label": "Cocos (Keeling) Islands", "value": "CC" }{ "label": "Congo - Kinshasa", "value": "CD" }{ "label": "Central African Republic", "value": "CF" }{ "label": "Congo - Brazzaville", "value": "CG" }{ "label": "Switzerland", "value": "CH" }{ "label": "Côte d'Ivoire", "value": "CI" }{ "label": "Cook Islands", "value": "CK" }{ "label": "Chile", "value": "CL" }{ "label": "Cameroon", "value": "CM" }{ "label": "China", "value": "CN" }{ "label": "Colombia", "value": "CO" }{ "label": "Clipperton Island", "value": "CP" }{ "label": "Costa Rica", "value": "CR" }{ "label": "Cuba", "value": "CU" }{ "label": "Cape Verde", "value": "CV" }{ "label": "Curaçao", "value": "CW" }{ "label": "Christmas Island", "value": "CX" }{ "label": "Cyprus", "value": "CY" }{ "label": "Czechia", "value": "CZ" }{ "label": "Germany", "value": "DE" }{ "label": "Diego Garcia", "value": "DG" }{ "label": "Djibouti", "value": "DJ" }{ "label": "Denmark", "value": "DK" }{ "label": "Dominica", "value": "DM" }{ "label": "Dominican Republic", "value": "DO" }{ "label": "Algeria", "value": "DZ" }{ "label": "Ceuta & Melilla", "value": "EA" }{ "label": "Ecuador", "value": "EC" }{ "label": "Estonia", "value": "EE" }{ "label": "Egypt", "value": "EG" }{ "label": "Western Sahara", "value": "EH" }{ "label": "Eritrea", "value": "ER" }{ "label": "Spain", "value": "ES" }{ "label": "Ethiopia", "value": "ET" }{ "label": "European Union", "value": "EU" }{ "label": "Eurozone", "value": "EZ" }{ "label": "Finland", "value": "FI" }{ "label": "Fiji", "value": "FJ" }{ "label": "Falkland Islands", "value": "FK" }{ "label": "Micronesia", "value": "FM" }{ "label": "Faroe Islands", "value": "FO" }{ "label": "France", "value": "FR" }{ "label": "Gabon", "value": "GA" }{ "label": "United Kingdom", "value": "GB" }{ "label": "Grenada", "value": "GD" }{ "label": "Georgia", "value": "GE" }{ "label": "French Guiana", "value": "GF" }{ "label": "Guernsey", "value": "GG" }{ "label": "Ghana", "value": "GH" }{ "label": "Gibraltar", "value": "GI" }{ "label": "Greenland", "value": "GL" }{ "label": "Gambia", "value": "GM" }{ "label": "Guinea", "value": "GN" }{ "label": "Guadeloupe", "value": "GP" }{ "label": "Equatorial Guinea", "value": "GQ" }{ "label": "Greece", "value": "GR" }{ "label": "South Georgia & South Sandwich Islands", "value": "GS" }{ "label": "Guatemala", "value": "GT" }{ "label": "Guam", "value": "GU" }{ "label": "Guinea-Bissau", "value": "GW" }{ "label": "Guyana", "value": "GY" }{ "label": "Hong Kong SAR China", "value": "HK" }{ "label": "Heard & McDonald Islands", "value": "HM" }{ "label": "Honduras", "value": "HN" }{ "label": "Croatia", "value": "HR" }{ "label": "Haiti", "value": "HT" }{ "label": "Hungary", "value": "HU" }{ "label": "Canary Islands", "value": "IC" }{ "label": "Indonesia", "value": "ID" }{ "label": "Ireland", "value": "IE" }{ "label": "Israel", "value": "IL" }{ "label": "Isle of Man", "value": "IM" }{ "label": "India", "value": "IN" }{ "label": "British Indian Ocean Territory", "value": "IO" }{ "label": "Iraq", "value": "IQ" }{ "label": "Iran", "value": "IR" }{ "label": "Iceland", "value": "IS" }{ "label": "Italy", "value": "IT" }{ "label": "Jersey", "value": "JE" }{ "label": "Jamaica", "value": "JM" }{ "label": "Jordan", "value": "JO" }{ "label": "Japan", "value": "JP" }{ "label": "Kenya", "value": "KE" }{ "label": "Kyrgyzstan", "value": "KG" }{ "label": "Cambodia", "value": "KH" }{ "label": "Kiribati", "value": "KI" }{ "label": "Comoros", "value": "KM" }{ "label": "St. Kitts & Nevis", "value": "KN" }{ "label": "North Korea", "value": "KP" }{ "label": "South Korea", "value": "KR" }{ "label": "Kuwait", "value": "KW" }{ "label": "Cayman Islands", "value": "KY" }{ "label": "Kazakhstan", "value": "KZ" }{ "label": "Laos", "value": "LA" }{ "label": "Lebanon", "value": "LB" }{ "label": "St. Lucia", "value": "LC" }{ "label": "Liechtenstein", "value": "LI" }{ "label": "Sri Lanka", "value": "LK" }{ "label": "Liberia", "value": "LR" }{ "label": "Lesotho", "value": "LS" }{ "label": "Lithuania", "value": "LT" }{ "label": "Luxembourg", "value": "LU" }{ "label": "Latvia", "value": "LV" }{ "label": "Libya", "value": "LY" }{ "label": "Morocco", "value": "MA" }{ "label": "Monaco", "value": "MC" }{ "label": "Moldova", "value": "MD" }{ "label": "Montenegro", "value": "ME" }{ "label": "St. Martin", "value": "MF" }{ "label": "Madagascar", "value": "MG" }{ "label": "Marshall Islands", "value": "MH" }{ "label": "North Macedonia", "value": "MK" }{ "label": "Mali", "value": "ML" }{ "label": "Myanmar (Burma)", "value": "MM" }{ "label": "Mongolia", "value": "MN" }{ "label": "Macao SAR China", "value": "MO" }{ "label": "Northern Mariana Islands", "value": "MP" }{ "label": "Martinique", "value": "MQ" }{ "label": "Mauritania", "value": "MR" }{ "label": "Montserrat", "value": "MS" }{ "label": "Malta", "value": "MT" }{ "label": "Mauritius", "value": "MU" }{ "label": "Maldives", "value": "MV" }{ "label": "Malawi", "value": "MW" }{ "label": "Mexico", "value": "MX" }{ "label": "Malaysia", "value": "MY" }{ "label": "Mozambique", "value": "MZ" }{ "label": "Namibia", "value": "NA" }{ "label": "New Caledonia", "value": "NC" }{ "label": "Niger", "value": "NE" }{ "label": "Norfolk Island", "value": "NF" }{ "label": "Nigeria", "value": "NG" }{ "label": "Nicaragua", "value": "NI" }{ "label": "Netherlands", "value": "NL" }{ "label": "Norway", "value": "NO" }{ "label": "Nepal", "value": "NP" }{ "label": "Nauru", "value": "NR" }{ "label": "Niue", "value": "NU" }{ "label": "New Zealand", "value": "NZ" }{ "label": "Oman", "value": "OM" }{ "label": "Panama", "value": "PA" }{ "label": "Peru", "value": "PE" }{ "label": "French Polynesia", "value": "PF" }{ "label": "Papua New Guinea", "value": "PG" }{ "label": "Philippines", "value": "PH" }{ "label": "Pakistan", "value": "PK" }{ "label": "Poland", "value": "PL" }{ "label": "St. Pierre & Miquelon", "value": "PM" }{ "label": "Pitcairn Islands", "value": "PN" }{ "label": "Puerto Rico", "value": "PR" }{ "label": "Palestinian Territories", "value": "PS" }{ "label": "Portugal", "value": "PT" }{ "label": "Palau", "value": "PW" }{ "label": "Paraguay", "value": "PY" }{ "label": "Qatar", "value": "QA" }{ "label": "Outlying Oceania", "value": "QO" }{ "label": "Réunion", "value": "RE" }{ "label": "Romania", "value": "RO" }{ "label": "Serbia", "value": "RS" }{ "label": "Russia", "value": "RU" }{ "label": "Rwanda", "value": "RW" }{ "label": "Saudi Arabia", "value": "SA" }{ "label": "Solomon Islands", "value": "SB" }{ "label": "Seychelles", "value": "SC" }{ "label": "Sudan", "value": "SD" }{ "label": "Sweden", "value": "SE" }{ "label": "Singapore", "value": "SG" }{ "label": "St. Helena", "value": "SH" }{ "label": "Slovenia", "value": "SI" }{ "label": "Svalbard & Jan Mayen", "value": "SJ" }{ "label": "Slovakia", "value": "SK" }{ "label": "Sierra Leone", "value": "SL" }{ "label": "San Marino", "value": "SM" }{ "label": "Senegal", "value": "SN" }{ "label": "Somalia", "value": "SO" }{ "label": "Suriname", "value": "SR" }{ "label": "South Sudan", "value": "SS" }{ "label": "São Tomé & Príncipe", "value": "ST" }{ "label": "El Salvador", "value": "SV" }{ "label": "Sint Maarten", "value": "SX" }{ "label": "Syria", "value": "SY" }{ "label": "Eswatini", "value": "SZ" }{ "label": "Tristan da Cunha", "value": "TA" }{ "label": "Turks & Caicos Islands", "value": "TC" }{ "label": "Chad", "value": "TD" }{ "label": "French Southern Territories", "value": "TF" }{ "label": "Togo", "value": "TG" }{ "label": "Thailand", "value": "TH" }{ "label": "Tajikistan", "value": "TJ" }{ "label": "Tokelau", "value": "TK" }{ "label": "Timor-Leste", "value": "TL" }{ "label": "Turkmenistan", "value": "TM" }{ "label": "Tunisia", "value": "TN" }{ "label": "Tonga", "value": "TO" }{ "label": "Turkey", "value": "TR" }{ "label": "Trinidad & Tobago", "value": "TT" }{ "label": "Tuvalu", "value": "TV" }{ "label": "Taiwan", "value": "TW" }{ "label": "Tanzania", "value": "TZ" }{ "label": "Ukraine", "value": "UA" }{ "label": "Uganda", "value": "UG" }{ "label": "U.S. Outlying Islands", "value": "UM" }{ "label": "United Nations", "value": "UN" }{ "label": "United States", "value": "US" }{ "label": "Uruguay", "value": "UY" }{ "label": "Uzbekistan", "value": "UZ" }{ "label": "Vatican City", "value": "VA" }{ "label": "St. Vincent & Grenadines", "value": "VC" }{ "label": "Venezuela", "value": "VE" }{ "label": "British Virgin Islands", "value": "VG" }{ "label": "U.S. Virgin Islands", "value": "VI" }{ "label": "Vietnam", "value": "VN" }{ "label": "Vanuatu", "value": "VU" }{ "label": "Wallis & Futuna", "value": "WF" }{ "label": "Samoa", "value": "WS" }{ "label": "Pseudo-Accents", "value": "XA" }{ "label": "Pseudo-Bidi", "value": "XB" }{ "label": "Kosovo", "value": "XK" }{ "label": "Yemen", "value": "YE" }{ "label": "Mayotte", "value": "YT" }{ "label": "South Africa", "value": "ZA" }{ "label": "Zambia", "value": "ZM" }{ "label": "Zimbabwe", "value": "ZW" }{ "label": "Unknown Region", "value": "ZZ" }
ChannelchannelstringSelect a value from the drop down menu:localonline
Additional OptionsadditionalOptionsobject

Additional options for the product. If a value is not a string, it will be parsed as JSON. See the documentation here

Action Authentication

Google Merchant Center uses OAuth authentication. When you connect your Google Merchant Center account, Pipedream will open a popup window where you can sign into Google Merchant Center 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 Merchant Center API.

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

emailprofilehttps://www.googleapis.com/auth/content

About Google Merchant Center

Merchant Center helps businesses promote their products across Google.

More Ways to Connect Google Merchant Center + ElevenLabs

Update Product with Google Merchant Center API on New History Item Created from ElevenLabs API
ElevenLabs + Google Merchant Center
 
Try it
Download History Items with ElevenLabs API on New Product Added from Google Merchant Center API
Google Merchant Center + ElevenLabs
 
Try it
Get Audio From History Item with ElevenLabs API on New Product Added from Google Merchant Center API
Google Merchant Center + ElevenLabs
 
Try it
Get Models with ElevenLabs API on New Product Added from Google Merchant Center API
Google Merchant Center + ElevenLabs
 
Try it
Text To Speech with ElevenLabs API on New Product Added from Google Merchant Center API
Google Merchant Center + ElevenLabs
 
Try it
New History Item Created from the ElevenLabs API

Emit new event when a new history item is created.

 
Try it
New Product Added from the Google Merchant Center API

Emit new event when a new product is added

 
Try it
Add Voice with the ElevenLabs API

Add a voice from one or more audio files. See the documentation

 
Try it
Create Agent with the ElevenLabs API

Create an agent in Eleventlabs. See the documentation

 
Try it
Download History Items with the ElevenLabs API

Download one or more history items to your workflow's tmp directory. If one history item ID is provided, we will return a single audio file. If more than one history item IDs are provided, we will provide the history items packed into a .zip file. See the documentation

 
Try it
Get Audio From History Item with the ElevenLabs API

Returns the audio of an history item and converts it to a file. See the documentation

 
Try it
Get Models with the ElevenLabs API

Gets a list of available models. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,800+
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.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
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.
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.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
Premium
Pinterest
Pinterest
Pinterest is a visual discovery engine for finding ideas like recipes, home and style inspiration, and more.
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
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.
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.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
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.