From aea25f5d3331fb0e46142d9c10b4d5061f57d8fc Mon Sep 17 00:00:00 2001 From: markzegarelli Date: Tue, 1 Mar 2022 14:31:28 -0800 Subject: [PATCH 1/6] Update script ready --- Makefile | 3 + scripts/update.js | 158 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 161 insertions(+) create mode 100644 scripts/update.js diff --git a/Makefile b/Makefile index 1e7fc2b02a..fa6717f5c1 100755 --- a/Makefile +++ b/Makefile @@ -150,6 +150,9 @@ vendor/bundle: @bundle config set --local path 'vendor/bundle' @bundle install +.PHONY: update +update: + @node scripts/update.js .PHONY: lint lint: node_modules diff --git a/scripts/update.js b/scripts/update.js new file mode 100644 index 0000000000..6aa6d00e2f --- /dev/null +++ b/scripts/update.js @@ -0,0 +1,158 @@ +// These lines are the required packages we need. These let us do things like make network requests to the Public API +// and interact with the frontmatter +const axios = require('axios'); +const path = require('path'); +const fs = require('fs'); +const fm = require('front-matter'); +const yaml = require('js-yaml'); +const { + type +} = require('os'); + +require('dotenv').config(); + +// Here, global variables are set +const PAPI_URL = "https://api.segmentapis.com" +const slugOverrides = yaml.load(fs.readFileSync(path.resolve(__dirname, `../src/_data/catalog/slugs.yml`))) + +// This function connects with the Public API. It looks for the endpoint URL and a page token value. +// The function is called in the updateSources and update Destination functions. +// Functions let us reuse code easily. Instead of needing to write this out multiple times, I can define it once +// and pass in the necessary details when I call it. +const getCatalog = async (url, page_token = "MA==") => { + try { + const res = await axios.get(url, { + headers: { + 'Content-Type': 'application/json', + 'Authorization': `Bearer ${process.env.PAPI_TOKEN}` + }, + data: { + "pagination": { + "count": 200, + "cursor": page_token + } + } + }); + + return res.data + } catch (error) { + console.log(error) + } +} + +// This function, again called by the two update functions, is what generates the slug values for each integration. +// It takes the integration's Display Name and converts it to a slug. +const slugify = (displayName) => { + let slug = displayName + .toLowerCase() + .replace(/\s+/g, '-') + .replace('-&-', '-') + .replace('/', '-') + .replace(/[\(\)]/g, '') + .replace('.', '-') + +// This is how we handle manual slug overrides right now. +// If a slug appears in the slugOverrides file, we want to use the 'override' value instead. + for (key in slugOverrides) { + let original = slugOverrides[key].original + let override = slugOverrides[key].override + + if (slug == original) { + console.log(original + " -> " + override) + slug = override + } + } + + return slug +} + +// This function does the actual work of adding the id value to the source and destination +// Notice that the write to file step is commented out. This is to verify that the updated frontmatter +// is correct before we write a whole bunch of files. +// Uncomment that line and remove the line above it to run it for real. +const addIdToExisting = (integration) => { + let itemURL = integration.url + try { + const catalogPath = path.resolve('src', itemURL, 'index.md') + if (fs.existsSync(catalogPath)) { + const f = fm(fs.readFileSync(catalogPath, 'utf8')); + const attr = `---\n${f.frontmatter}\nid: ${integration.id}\n---\n` + const body = f.body + const content = attr + body + console.log(attr) + //fs.writeFileSync(catalogPath, content) + } + } catch (e) { + console.log(error) + return false + } +} + + +// This is just a stripped down version of the updateSources() script from the catalog script. +// We're retrieving less information overall, because all we care about here is the id. +const updateSources = async () => { + + let sources = [] + let nextPageToken = "MA==" + + while (nextPageToken !== null) { + const res = await getCatalog(`${PAPI_URL}/catalog/sources/`, nextPageToken) + sources = sources.concat(res.data.sourcesCatalog) + nextPageToken = res.data.pagination.next + } + + const libraryCategories = [ + 'server', + 'mobile', + 'ott', + 'roku', + 'website' + ] + sources.forEach(source => { + let slug = slugify(source.name) + let mainCategory = source.categories[0] ? source.categories[0].toLowerCase() : '' + + if (libraryCategories.includes(mainCategory)) { + url = `connections/sources/catalog/libraries/${mainCategory}/${slug}` + } else { + url = `connections/sources/catalog/cloud-apps/${slug}` + mainCategory = 'cloud-app' + } +// So, we retrieve and store only the id and the URL, which is defined in the if statement on line 116. + let updatedSource = { + id: source.id, + url, + } + addIdToExisting(updatedSource) + }) +} + +// Similar to the sources script, only for destinations. +const updateDestinations = async () => { + let destinations = [] + let nextPageToken = "MA==" + + while (nextPageToken !== null) { + const res = await getCatalog(`${PAPI_URL}/catalog/destinations/`, nextPageToken) + destinations = destinations.concat(res.data.destinationsCatalog) + nextPageToken = res.data.pagination.next + } + + + destinations.forEach(destination => { + let slug = slugify(destination.name) + + let url = `connections/destinations/catalog/${slug}` + + let updatedDestination = { + id: destination.id, + url + } + addIdToExisting(updatedDestination) + + }) + +} +updateDestinations() +updateSources() From c0dd16438de3d22aecfcc5463207b43109715209 Mon Sep 17 00:00:00 2001 From: stayseesong Date: Thu, 3 Mar 2022 09:18:03 -0800 Subject: [PATCH 2/6] [netlify-build] --- scripts/update.js | 8 ++++---- src/_includes/content/destination-dossier.html | 6 +++--- src/connections/destinations/catalog/2mee/index.md | 1 + src/connections/destinations/catalog/ab-smartly/index.md | 3 +-- .../destinations/catalog/actions-amplitude/index.md | 1 + .../catalog/actions-facebook-conversions-api/index.md | 2 +- .../destinations/catalog/actions-friendbuy-cloud/index.md | 2 +- .../destinations/catalog/actions-friendbuy/index.md | 2 +- .../destinations/catalog/actions-fullstory/index.md | 1 + .../catalog/actions-google-analytics-4/index.md | 2 +- .../catalog/actions-google-enhanced-conversions/index.md | 2 +- .../destinations/catalog/actions-slack/index.md | 1 + .../destinations/catalog/activecampaign/index.md | 2 +- src/connections/destinations/catalog/adikteev/index.md | 2 +- src/connections/destinations/catalog/adjust/index.md | 2 +- .../destinations/catalog/adlearn-open-platform/index.md | 3 ++- .../destinations/catalog/adobe-analytics/index.md | 2 +- src/connections/destinations/catalog/adquick/index.md | 2 +- src/connections/destinations/catalog/adroll/index.md | 2 +- src/connections/destinations/catalog/adtriba/index.md | 3 +-- .../catalog/adwords-remarketing-lists/index.md | 2 +- src/connections/destinations/catalog/airship/index.md | 2 +- src/connections/destinations/catalog/alexa/index.md | 1 + .../destinations/catalog/algolia-insights/index.md | 2 +- .../destinations/catalog/amazon-eventbridge/index.md | 1 + .../destinations/catalog/amazon-kinesis-firehose/index.md | 1 + .../destinations/catalog/amazon-kinesis/index.md | 1 + .../destinations/catalog/amazon-lambda/index.md | 2 +- .../destinations/catalog/amazon-personalize/index.md | 2 +- src/connections/destinations/catalog/ambassador/index.md | 2 +- src/connections/destinations/catalog/amplitude/index.md | 2 +- src/connections/destinations/catalog/anodot/index.md | 1 + src/connections/destinations/catalog/appcues/index.md | 1 + src/connections/destinations/catalog/appnexus/index.md | 3 ++- src/connections/destinations/catalog/appsflyer/index.md | 1 + src/connections/destinations/catalog/apptimize/index.md | 1 + src/connections/destinations/catalog/asayer/index.md | 1 + src/connections/destinations/catalog/atatus/index.md | 3 ++- src/connections/destinations/catalog/attribution/index.md | 1 + src/connections/destinations/catalog/auryc/index.md | 1 + .../destinations/catalog/autopilotapp/index.md | 2 +- src/connections/destinations/catalog/autopilothq/index.md | 1 + src/connections/destinations/catalog/aws-s3/index.md | 1 + .../destinations/catalog/azure-function/index.md | 2 +- src/connections/destinations/catalog/batch/index.md | 2 +- src/connections/destinations/catalog/beamer/index.md | 2 +- src/connections/destinations/catalog/bing-ads/index.md | 2 +- src/connections/destinations/catalog/blendo/index.md | 2 +- src/connections/destinations/catalog/blueshift/index.md | 3 ++- .../destinations/catalog/branch-metrics/index.md | 2 +- .../catalog/braze-cloud-mode-actions/index.md | 1 + .../catalog/braze-web-device-mode-actions/index.md | 1 + src/connections/destinations/catalog/braze/index.md | 2 +- src/connections/destinations/catalog/bronto/index.md | 2 +- src/connections/destinations/catalog/bucket/index.md | 1 + src/connections/destinations/catalog/bugherd/index.md | 1 + src/connections/destinations/catalog/bugsnag/index.md | 2 +- src/connections/destinations/catalog/button/index.md | 1 + src/connections/destinations/catalog/buzzboard/index.md | 2 +- src/connections/destinations/catalog/bytegain/index.md | 1 + src/connections/destinations/catalog/byteplus/index.md | 2 +- src/connections/destinations/catalog/calixa/index.md | 2 +- src/connections/destinations/catalog/callingly/index.md | 2 +- src/connections/destinations/catalog/candu/index.md | 2 +- src/connections/destinations/catalog/canny/index.md | 2 +- src/connections/destinations/catalog/castle/index.md | 2 +- src/connections/destinations/catalog/chameleon/index.md | 2 +- src/connections/destinations/catalog/chartbeat/index.md | 2 +- src/connections/destinations/catalog/churnzero/index.md | 2 +- .../destinations/catalog/clearbit-enrichment/index.md | 2 +- .../destinations/catalog/clearbit-reveal/index.md | 2 +- src/connections/destinations/catalog/clearbrain/index.md | 2 +- src/connections/destinations/catalog/clevertap/index.md | 2 +- src/connections/destinations/catalog/clicky/index.md | 2 +- .../destinations/catalog/clientsuccess/index.md | 2 +- src/connections/destinations/catalog/cliff/index.md | 1 + src/connections/destinations/catalog/comscore/index.md | 2 +- src/connections/destinations/catalog/convertflow/index.md | 1 + src/connections/destinations/catalog/convertro/index.md | 2 +- src/connections/destinations/catalog/countly/index.md | 2 +- src/connections/destinations/catalog/courier/index.md | 2 +- src/connections/destinations/catalog/crazy-egg/index.md | 2 +- src/connections/destinations/catalog/crisp/index.md | 3 ++- .../destinations/catalog/criteo-app-web-events/index.md | 2 +- .../catalog/criteo-offline-conversions/index.md | 2 +- src/connections/destinations/catalog/crittercism/index.md | 2 +- src/connections/destinations/catalog/crowdpower/index.md | 2 +- src/connections/destinations/catalog/cruncher/index.md | 1 + src/connections/destinations/catalog/custify/index.md | 2 +- .../destinations/catalog/customer-io-actions/index.md | 1 + src/connections/destinations/catalog/customer-io/index.md | 2 +- .../destinations/catalog/customersuccessbox/index.md | 2 +- .../destinations/catalog/customfit-ai/index.md | 1 + src/connections/destinations/catalog/databrain/index.md | 2 +- src/connections/destinations/catalog/delighted/index.md | 2 +- src/connections/destinations/catalog/digioh/index.md | 1 + .../destinations/catalog/doubleclick-floodlight/index.md | 2 +- .../destinations/catalog/dreamdata-io/index.md | 1 + src/connections/destinations/catalog/drip/index.md | 2 +- src/connections/destinations/catalog/elevio/index.md | 2 +- src/connections/destinations/catalog/eloqua/index.md | 2 +- .../destinations/catalog/email-aptitude/index.md | 3 ++- src/connections/destinations/catalog/emarsys/index.md | 2 +- src/connections/destinations/catalog/emma/index.md | 2 +- .../destinations/catalog/engage-messaging/index.md | 2 +- src/connections/destinations/catalog/enjoyhq/index.md | 2 +- src/connections/destinations/catalog/epica/index.md | 2 +- .../destinations/catalog/errorception/index.md | 2 +- src/connections/destinations/catalog/everflow/index.md | 1 + .../catalog/experiments-by-growthhackers/index.md | 1 + src/connections/destinations/catalog/exponea/index.md | 2 +- .../destinations/catalog/extole-platform/index.md | 3 +-- .../destinations/catalog/facebook-app-events/index.md | 2 +- .../catalog/facebook-conversions-api/index.md | 2 +- .../catalog/facebook-offline-conversions/index.md | 2 +- .../destinations/catalog/facebook-pixel/index.md | 2 +- src/connections/destinations/catalog/factorsai/index.md | 1 + src/connections/destinations/catalog/firebase/index.md | 2 +- src/connections/destinations/catalog/flurry/index.md | 2 +- src/connections/destinations/catalog/foxmetrics/index.md | 2 +- .../destinations/catalog/freshmarketer/index.md | 2 +- src/connections/destinations/catalog/freshsales/index.md | 1 + src/connections/destinations/catalog/friendbuy/index.md | 1 + src/connections/destinations/catalog/fullstory/index.md | 1 + src/connections/destinations/catalog/funnelenvy/index.md | 2 +- src/connections/destinations/catalog/funnelfox/index.md | 1 + .../destinations/catalog/gainsight-px/index.md | 2 +- src/connections/destinations/catalog/gainsight/index.md | 2 +- src/connections/destinations/catalog/gameball/index.md | 2 +- src/connections/destinations/catalog/gauges/index.md | 2 +- src/connections/destinations/catalog/gist/index.md | 1 + src/connections/destinations/catalog/goedle-io/index.md | 2 +- .../destinations/catalog/google-ads-classic/index.md | 4 ++-- .../destinations/catalog/google-ads-gtag/index.md | 2 +- .../destinations/catalog/google-analytics/index.md | 2 +- .../destinations/catalog/google-cloud-function/index.md | 2 +- .../destinations/catalog/google-cloud-pubsub/index.md | 3 +-- .../destinations/catalog/google-tag-manager/index.md | 2 +- src/connections/destinations/catalog/gosquared/index.md | 2 +- src/connections/destinations/catalog/graphjson/index.md | 1 + src/connections/destinations/catalog/hasoffers/index.md | 3 ++- src/connections/destinations/catalog/hawkei/index.md | 2 +- src/connections/destinations/catalog/headsup-ai/index.md | 2 +- src/connections/destinations/catalog/heap/index.md | 2 +- src/connections/destinations/catalog/hello-bar/index.md | 3 ++- src/connections/destinations/catalog/help-scout/index.md | 2 +- src/connections/destinations/catalog/hittail/index.md | 2 +- src/connections/destinations/catalog/hotjar/index.md | 2 +- src/connections/destinations/catalog/houseware/index.md | 2 +- src/connections/destinations/catalog/hubspot/index.md | 4 ++-- src/connections/destinations/catalog/hull/index.md | 2 +- src/connections/destinations/catalog/hydra/index.md | 1 + src/connections/destinations/catalog/ibm-ubx/index.md | 2 +- .../catalog/impact-partnership-cloud/index.md | 2 +- src/connections/destinations/catalog/improvely/index.md | 3 ++- src/connections/destinations/catalog/indicative/index.md | 2 +- src/connections/destinations/catalog/inkit/index.md | 2 +- src/connections/destinations/catalog/insider/index.md | 2 +- src/connections/destinations/catalog/inspectlet/index.md | 2 +- src/connections/destinations/catalog/intercom/index.md | 2 +- src/connections/destinations/catalog/iron-io/index.md | 2 +- src/connections/destinations/catalog/iterable/index.md | 4 ++-- src/connections/destinations/catalog/journy-io/index.md | 2 +- src/connections/destinations/catalog/june/index.md | 2 +- src/connections/destinations/catalog/kahuna/index.md | 2 +- src/connections/destinations/catalog/kameleoon/index.md | 2 +- src/connections/destinations/catalog/keen/index.md | 2 +- src/connections/destinations/catalog/kevel/index.md | 2 +- src/connections/destinations/catalog/kissmetrics/index.md | 1 + src/connections/destinations/catalog/kitemetrics/index.md | 1 + src/connections/destinations/catalog/klaviyo/index.md | 2 +- src/connections/destinations/catalog/kochava/index.md | 2 +- src/connections/destinations/catalog/kubit/index.md | 1 + src/connections/destinations/catalog/kustomer/index.md | 1 + src/connections/destinations/catalog/lantern/index.md | 1 + src/connections/destinations/catalog/leanplum/index.md | 2 +- src/connections/destinations/catalog/learndot/index.md | 2 +- src/connections/destinations/catalog/librato/index.md | 2 +- .../destinations/catalog/linkedin-insight-tag/index.md | 2 +- src/connections/destinations/catalog/livechat/index.md | 2 +- .../destinations/catalog/liveintent-audiences/index.md | 2 +- src/connections/destinations/catalog/localytics/index.md | 2 +- src/connections/destinations/catalog/lou/index.md | 1 + .../destinations/catalog/lucky-orange/index.md | 2 +- src/connections/destinations/catalog/lytics/index.md | 1 + src/connections/destinations/catalog/mabl/index.md | 2 +- src/connections/destinations/catalog/madkudu/index.md | 2 +- src/connections/destinations/catalog/mailchimp/index.md | 1 + src/connections/destinations/catalog/mailjet/index.md | 2 +- src/connections/destinations/catalog/mammoth/index.md | 1 + .../destinations/catalog/marketo-static-lists/index.md | 2 +- src/connections/destinations/catalog/marketo-v2/index.md | 2 +- .../destinations/catalog/markettailor/index.md | 3 +-- src/connections/destinations/catalog/matomo/index.md | 2 +- src/connections/destinations/catalog/mediamath/index.md | 3 ++- .../destinations/catalog/millennial-media/index.md | 2 +- src/connections/destinations/catalog/mixpanel/index.md | 2 +- .../destinations/catalog/modern-pricing/index.md | 1 + src/connections/destinations/catalog/moengage/index.md | 2 +- .../destinations/catalog/moesif-api-analytics/index.md | 2 +- src/connections/destinations/catalog/monetate/index.md | 2 +- src/connections/destinations/catalog/moosend/index.md | 2 +- src/connections/destinations/catalog/mouseflow/index.md | 2 +- src/connections/destinations/catalog/mousestats/index.md | 3 ++- src/connections/destinations/catalog/movable-ink/index.md | 2 +- src/connections/destinations/catalog/mutiny/index.md | 2 +- src/connections/destinations/catalog/nanigans/index.md | 2 +- src/connections/destinations/catalog/nat/index.md | 2 +- src/connections/destinations/catalog/natero/index.md | 2 +- src/connections/destinations/catalog/navilytics/index.md | 3 ++- src/connections/destinations/catalog/new-relic/index.md | 1 + src/connections/destinations/catalog/nielsen-dcr/index.md | 2 +- src/connections/destinations/catalog/noora/index.md | 2 +- src/connections/destinations/catalog/nudgespot/index.md | 2 +- src/connections/destinations/catalog/olark/index.md | 2 +- .../destinations/catalog/onesignal-new/index.md | 2 +- .../destinations/catalog/optimizely-full-stack/index.md | 2 +- .../destinations/catalog/optimizely-web/index.md | 2 +- src/connections/destinations/catalog/pardot/index.md | 2 +- src/connections/destinations/catalog/parsely/index.md | 2 +- src/connections/destinations/catalog/pendo/index.md | 2 +- .../destinations/catalog/perfect-audience/index.md | 2 +- src/connections/destinations/catalog/perkville/index.md | 2 +- src/connections/destinations/catalog/persistiq/index.md | 2 +- .../catalog/personas-display-video-360/index.md | 2 +- .../catalog/personas-facebook-custom-audiences/index.md | 3 +-- src/connections/destinations/catalog/personyze/index.md | 1 + src/connections/destinations/catalog/pingdom/index.md | 2 +- .../destinations/catalog/pinterest-audiences/index.md | 1 + .../destinations/catalog/pinterest-tag/index.md | 2 +- src/connections/destinations/catalog/planhat/index.md | 2 +- src/connections/destinations/catalog/podsights/index.md | 2 +- src/connections/destinations/catalog/pointillist/index.md | 2 +- src/connections/destinations/catalog/posthog/index.md | 1 + src/connections/destinations/catalog/productbird/index.md | 1 + src/connections/destinations/catalog/profitwell/index.md | 2 +- src/connections/destinations/catalog/promoter-io/index.md | 2 +- .../destinations/catalog/proof-experiences/index.md | 2 +- .../destinations/catalog/prosperstack/index.md | 2 +- src/connections/destinations/catalog/qualaroo/index.md | 2 +- src/connections/destinations/catalog/quantcast/index.md | 2 +- src/connections/destinations/catalog/quanticmind/index.md | 1 + .../destinations/catalog/quora-conversion-pixel/index.md | 2 +- .../destinations/catalog/radiumone-connect/index.md | 3 ++- src/connections/destinations/catalog/ramen/index.md | 2 +- src/connections/destinations/catalog/recombee-ai/index.md | 2 +- src/connections/destinations/catalog/refersion/index.md | 1 + src/connections/destinations/catalog/refiner/index.md | 1 + src/connections/destinations/catalog/regal-voice/index.md | 2 +- src/connections/destinations/catalog/repeater/index.md | 2 +- src/connections/destinations/catalog/responsys/index.md | 2 +- src/connections/destinations/catalog/retently/index.md | 2 +- src/connections/destinations/catalog/retina/index.md | 2 +- src/connections/destinations/catalog/richpanel/index.md | 2 +- src/connections/destinations/catalog/rockerbox/index.md | 2 +- src/connections/destinations/catalog/rollbar/index.md | 2 +- src/connections/destinations/catalog/sailthru-v2/index.md | 1 + .../destinations/catalog/salescamp-crm/index.md | 2 +- .../catalog/salesforce-marketing-cloud/index.md | 2 +- src/connections/destinations/catalog/salesforce/index.md | 2 +- .../destinations/catalog/salesmachine/index.md | 2 +- src/connections/destinations/catalog/satismeter/index.md | 2 +- src/connections/destinations/catalog/savio/index.md | 1 + src/connections/destinations/catalog/scopeai/index.md | 1 + src/connections/destinations/catalog/screeb/index.md | 2 +- .../destinations/catalog/scuba-analytics/index.md | 1 + src/connections/destinations/catalog/seg/index.md | 2 +- src/connections/destinations/catalog/segmetrics/index.md | 1 + .../catalog/selligent-marketing-cloud/index.md | 1 + src/connections/destinations/catalog/sentry/index.md | 2 +- src/connections/destinations/catalog/serenytics/index.md | 1 + src/connections/destinations/catalog/shareasale/index.md | 2 +- src/connections/destinations/catalog/sherlock/index.md | 2 +- .../destinations/catalog/signl4-alerting/index.md | 2 +- src/connections/destinations/catalog/simplereach/index.md | 2 +- src/connections/destinations/catalog/singular/index.md | 2 +- src/connections/destinations/catalog/slack/index.md | 2 +- src/connections/destinations/catalog/slicingdice/index.md | 1 + src/connections/destinations/catalog/smartlook/index.md | 1 + src/connections/destinations/catalog/snapboard/index.md | 3 +-- .../destinations/catalog/snapchat-audiences/index.md | 1 + src/connections/destinations/catalog/snapengage/index.md | 2 +- src/connections/destinations/catalog/spinnakr/index.md | 3 ++- src/connections/destinations/catalog/split/index.md | 2 +- src/connections/destinations/catalog/sprig-cloud/index.md | 2 +- src/connections/destinations/catalog/sprig-web/index.md | 2 +- .../destinations/catalog/startdeliver/index.md | 2 +- src/connections/destinations/catalog/statsig/index.md | 2 +- src/connections/destinations/catalog/stitch-data/index.md | 3 ++- src/connections/destinations/catalog/stonly/index.md | 2 +- src/connections/destinations/catalog/stories/index.md | 2 +- src/connections/destinations/catalog/stormly/index.md | 2 +- src/connections/destinations/catalog/strikedeck/index.md | 1 + src/connections/destinations/catalog/survicate/index.md | 1 + src/connections/destinations/catalog/swrve/index.md | 2 +- src/connections/destinations/catalog/talkable/index.md | 2 +- src/connections/destinations/catalog/talonone/index.md | 1 + src/connections/destinations/catalog/tamber/index.md | 1 + src/connections/destinations/catalog/taplytics/index.md | 2 +- src/connections/destinations/catalog/tapstream/index.md | 1 + .../destinations/catalog/tiktok-conversions/index.md | 2 +- src/connections/destinations/catalog/totango/index.md | 2 +- src/connections/destinations/catalog/track-js/index.md | 1 + src/connections/destinations/catalog/trackier/index.md | 1 + .../destinations/catalog/tractionboard/index.md | 2 +- .../destinations/catalog/trafficguard/index.md | 1 + src/connections/destinations/catalog/tray-io/index.md | 2 +- .../destinations/catalog/treasure-data/index.md | 2 +- src/connections/destinations/catalog/trustpilot/index.md | 1 + src/connections/destinations/catalog/tune/index.md | 2 +- src/connections/destinations/catalog/tv-squared/index.md | 2 +- src/connections/destinations/catalog/twitter-ads/index.md | 2 +- src/connections/destinations/catalog/unwaffle/index.md | 2 +- src/connections/destinations/catalog/upcall/index.md | 2 +- src/connections/destinations/catalog/user-com/index.md | 2 +- src/connections/destinations/catalog/useriq/index.md | 2 +- src/connections/destinations/catalog/userlist/index.md | 2 +- src/connections/destinations/catalog/userpilot/index.md | 1 + src/connections/destinations/catalog/uservoice/index.md | 2 +- src/connections/destinations/catalog/variance/index.md | 2 +- src/connections/destinations/catalog/vero/index.md | 2 +- src/connections/destinations/catalog/vespucci/index.md | 2 +- src/connections/destinations/catalog/vidora/index.md | 2 +- .../catalog/visual-website-optimizer/index.md | 2 +- src/connections/destinations/catalog/vitally/index.md | 2 +- src/connections/destinations/catalog/voucherify/index.md | 2 +- src/connections/destinations/catalog/walkme/index.md | 1 + src/connections/destinations/catalog/webengage/index.md | 2 +- src/connections/destinations/catalog/webhooks/index.md | 1 + .../destinations/catalog/whale-alerts/index.md | 2 +- src/connections/destinations/catalog/whale-watch/index.md | 3 ++- src/connections/destinations/catalog/wigzo/index.md | 2 +- src/connections/destinations/catalog/windsor/index.md | 2 +- src/connections/destinations/catalog/wishpond/index.md | 2 +- src/connections/destinations/catalog/woopra/index.md | 2 +- src/connections/destinations/catalog/xplenty/index.md | 3 ++- src/connections/destinations/catalog/xtremepush/index.md | 1 + .../destinations/catalog/yandex-metrica/index.md | 1 + .../destinations/catalog/yellowhammer/index.md | 3 ++- src/connections/destinations/catalog/youbora/index.md | 2 +- src/connections/destinations/catalog/zaius/index.md | 2 +- src/connections/destinations/catalog/zapier/index.md | 1 + .../destinations/catalog/zendesk-connect/index.md | 2 +- src/connections/destinations/catalog/zendesk/index.md | 2 +- src/connections/destinations/catalog/zopim/index.md | 2 +- .../sources/catalog/cloud-apps/activecampaign/index.md | 2 +- .../sources/catalog/cloud-apps/aircall/index.md | 2 +- .../sources/catalog/cloud-apps/airship/index.md | 2 +- .../sources/catalog/cloud-apps/amazon-s3/index.md | 2 +- .../sources/catalog/cloud-apps/amplitude-cohorts/index.md | 2 +- .../sources/catalog/cloud-apps/autopilothq/index.md | 2 +- .../sources/catalog/cloud-apps/beamer/index.md | 2 +- .../sources/catalog/cloud-apps/blueshift/index.md | 2 +- src/connections/sources/catalog/cloud-apps/braze/index.md | 2 +- src/connections/sources/catalog/cloud-apps/candu/index.md | 2 +- .../sources/catalog/cloud-apps/chatlio/index.md | 2 +- .../sources/catalog/cloud-apps/customer-io/index.md | 2 +- .../sources/catalog/cloud-apps/delighted/index.md | 2 +- src/connections/sources/catalog/cloud-apps/drip/index.md | 1 + .../sources/catalog/cloud-apps/facebook-ads/index.md | 2 +- .../sources/catalog/cloud-apps/facebook-lead-ads/index.md | 2 +- .../sources/catalog/cloud-apps/factual-engine/index.md | 2 +- .../catalog/cloud-apps/foursquare-pilgrim/index.md | 2 +- .../sources/catalog/cloud-apps/friendbuy/index.md | 2 +- .../sources/catalog/cloud-apps/google-ads/index.md | 2 +- src/connections/sources/catalog/cloud-apps/herow/index.md | 2 +- .../sources/catalog/cloud-apps/hubspot/index.md | 2 +- .../sources/catalog/cloud-apps/intercom/index.md | 2 +- .../sources/catalog/cloud-apps/iterable/index.md | 2 +- .../sources/catalog/cloud-apps/klaviyo/index.md | 2 +- .../sources/catalog/cloud-apps/klenty/index.md | 2 +- .../sources/catalog/cloud-apps/launchdarkly/index.md | 2 +- .../sources/catalog/cloud-apps/leanplum/index.md | 2 +- .../sources/catalog/cloud-apps/looker/index.md | 2 +- .../sources/catalog/cloud-apps/mailchimp/index.md | 2 +- .../sources/catalog/cloud-apps/mailjet/index.md | 2 +- .../sources/catalog/cloud-apps/mandrill/index.md | 2 +- .../sources/catalog/cloud-apps/marketo/index.md | 1 + .../sources/catalog/cloud-apps/mixpanel-cohorts/index.md | 2 +- .../catalog/cloud-apps/moesif-api-analytics/index.md | 2 +- .../sources/catalog/cloud-apps/nudgespot/index.md | 2 +- src/connections/sources/catalog/cloud-apps/pendo/index.md | 2 +- .../sources/catalog/cloud-apps/project/index.md | 2 +- .../sources/catalog/cloud-apps/provesource/index.md | 2 +- src/connections/sources/catalog/cloud-apps/radar/index.md | 2 +- .../sources/catalog/cloud-apps/refiner/index.md | 2 +- .../sources/catalog/cloud-apps/regal-voice/index.md | 2 +- .../cloud-apps/salesforce-marketing-cloud/index.md | 1 + .../sources/catalog/cloud-apps/salesforce/index.md | 2 +- .../catalog/cloud-apps/selligent-marketing-cloud/index.md | 2 +- .../sources/catalog/cloud-apps/sendgrid/index.md | 2 +- .../sources/catalog/cloud-apps/stripe/index.md | 2 +- .../catalog/cloud-apps/twilio-event-streams-beta/index.md | 2 +- .../sources/catalog/cloud-apps/twilio/index.md | 2 +- src/connections/sources/catalog/cloud-apps/vero/index.md | 2 +- .../sources/catalog/cloud-apps/youbora/index.md | 2 +- .../sources/catalog/cloud-apps/zendesk/index.md | 2 +- .../sources/catalog/libraries/mobile/android/index.md | 3 +-- .../sources/catalog/libraries/mobile/ios/index.md | 3 +-- .../catalog/libraries/mobile/kotlin-android/index.md | 2 +- .../catalog/libraries/mobile/react-native/index.md | 2 +- .../sources/catalog/libraries/mobile/swift-ios/index.md | 2 +- .../sources/catalog/libraries/mobile/xamarin/index.md | 2 +- .../sources/catalog/libraries/ott/roku/index.md | 2 +- .../sources/catalog/libraries/server/clojure/index.md | 2 +- .../sources/catalog/libraries/server/go/index.md | 3 +-- .../sources/catalog/libraries/server/http-api/index.md | 2 +- .../sources/catalog/libraries/server/java/index.md | 2 +- .../sources/catalog/libraries/server/kotlin/index.md | 2 +- .../sources/catalog/libraries/server/net/index.md | 2 +- .../sources/catalog/libraries/server/php/index.md | 2 +- .../catalog/libraries/server/pixel-tracking-api/index.md | 2 +- .../sources/catalog/libraries/server/python/index.md | 2 +- .../sources/catalog/libraries/server/ruby/index.md | 2 +- .../sources/catalog/libraries/website/javascript/index.md | 2 +- .../catalog/libraries/website/shopify-littledata/index.md | 2 +- 416 files changed, 442 insertions(+), 348 deletions(-) diff --git a/scripts/update.js b/scripts/update.js index 6aa6d00e2f..0693906a54 100644 --- a/scripts/update.js +++ b/scripts/update.js @@ -16,7 +16,7 @@ const PAPI_URL = "https://api.segmentapis.com" const slugOverrides = yaml.load(fs.readFileSync(path.resolve(__dirname, `../src/_data/catalog/slugs.yml`))) // This function connects with the Public API. It looks for the endpoint URL and a page token value. -// The function is called in the updateSources and update Destination functions. +// The function is called in the updateSources and update Destination functions. // Functions let us reuse code easily. Instead of needing to write this out multiple times, I can define it once // and pass in the necessary details when I call it. const getCatalog = async (url, page_token = "MA==") => { @@ -68,7 +68,7 @@ const slugify = (displayName) => { // This function does the actual work of adding the id value to the source and destination // Notice that the write to file step is commented out. This is to verify that the updated frontmatter -// is correct before we write a whole bunch of files. +// is correct before we write a whole bunch of files. // Uncomment that line and remove the line above it to run it for real. const addIdToExisting = (integration) => { let itemURL = integration.url @@ -80,7 +80,7 @@ const addIdToExisting = (integration) => { const body = f.body const content = attr + body console.log(attr) - //fs.writeFileSync(catalogPath, content) + fs.writeFileSync(catalogPath, content) } } catch (e) { console.log(error) @@ -144,7 +144,7 @@ const updateDestinations = async () => { let slug = slugify(destination.name) let url = `connections/destinations/catalog/${slug}` - + let updatedDestination = { id: destination.id, url diff --git a/src/_includes/content/destination-dossier.html b/src/_includes/content/destination-dossier.html index 5f90cba194..ad1df7bcb3 100644 --- a/src/_includes/content/destination-dossier.html +++ b/src/_includes/content/destination-dossier.html @@ -1,11 +1,11 @@ -{% assign thisDestination = page.url | split: "/" | last %} +{% assign thisDestination = page.id %} {% assign overrideInfo = site.data.catalog.overrides.items % | where: "slug", thisDestination | first %} -{% assign destinationInfo = site.data.catalog.destinations.items | where: "slug", thisDestination | first %} +{% assign destinationInfo = site.data.catalog.destinations.items | where: "destination_id", thisDestination | first %} {% comment %}There are probably prettier ways to generate a list of links to these methods, but this was good enough for me.{% endcomment %} {% assign destMethods = "" | split: ", " %} {% assign methodName = "" | split: " " %} @@ -78,4 +78,4 @@
Connection Modes {% endif %} - \ No newline at end of file + diff --git a/src/connections/destinations/catalog/2mee/index.md b/src/connections/destinations/catalog/2mee/index.md index 20491e2ec8..dbdb52227e 100644 --- a/src/connections/destinations/catalog/2mee/index.md +++ b/src/connections/destinations/catalog/2mee/index.md @@ -1,6 +1,7 @@ --- title: 2mee Destination rewrite: true +id: 60b5d0a01f3726b85dc05aab --- [2mee](https://2mee.com ) is a Human Hologram platform that automatically cuts the person out from the background, removing the visual clutter, and places them in the familiar context of your phone or website so that they dominate the screen. diff --git a/src/connections/destinations/catalog/ab-smartly/index.md b/src/connections/destinations/catalog/ab-smartly/index.md index 3ad4a23ed7..22edbc9182 100644 --- a/src/connections/destinations/catalog/ab-smartly/index.md +++ b/src/connections/destinations/catalog/ab-smartly/index.md @@ -1,8 +1,7 @@ --- title: AB Smartly Destination +id: 605dd9d7e5ff0b3873e250a4 --- - - [A/B Smartly](https://absmartly.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank"} provides an on-premise, full-stack experimentation platform for engineering and product teams that do continuous experimentation embedded into their development process. A/B Smartly's real-time analytics helps engineering and product teams ensure that new features will improve the customer experience without breaking or degrading performance and/or business metrics. This destination is maintained by A/B Smartly. For any issues with the destination, [contact A/B Smartly's Support](mailto:support@absmartly.com). diff --git a/src/connections/destinations/catalog/actions-amplitude/index.md b/src/connections/destinations/catalog/actions-amplitude/index.md index 8424589ec7..0a06415ffd 100644 --- a/src/connections/destinations/catalog/actions-amplitude/index.md +++ b/src/connections/destinations/catalog/actions-amplitude/index.md @@ -2,6 +2,7 @@ title: Amplitude (Actions) Destination hide-boilerplate: true hide-dossier: false +id: 5f7dd6d21ad74f3842b1fc47 --- {% include content/plan-grid.md name="actions" %} diff --git a/src/connections/destinations/catalog/actions-facebook-conversions-api/index.md b/src/connections/destinations/catalog/actions-facebook-conversions-api/index.md index 58098afc13..c766fdf1fa 100644 --- a/src/connections/destinations/catalog/actions-facebook-conversions-api/index.md +++ b/src/connections/destinations/catalog/actions-facebook-conversions-api/index.md @@ -3,8 +3,8 @@ title: Facebook Conversions API (Actions) strat: facebook hide-boilerplate: true hide-dossier: false +id: 61806e472cd47ea1104885fc --- - Facebook Conversions API (Actions) enables advertisers to send events from their servers directly to Facebook. Server-side events link to Facebook Pixel events, and process like browser pixel events. This means that server-side events are used in measurement, reporting, and optimization, just like browser pixel events. > info "" diff --git a/src/connections/destinations/catalog/actions-friendbuy-cloud/index.md b/src/connections/destinations/catalog/actions-friendbuy-cloud/index.md index 8c7a5356d1..7d4c588bd9 100644 --- a/src/connections/destinations/catalog/actions-friendbuy-cloud/index.md +++ b/src/connections/destinations/catalog/actions-friendbuy-cloud/index.md @@ -3,8 +3,8 @@ title: Friendbuy Cloud Mode (Actions) Destination hide-boilerplate: true hide-dossier: false hidden: false +id: 61dde0dc77eb0db0392649d3 --- - {% include content/plan-grid.md name="actions" %} [Friendbuy](https://www.friendbuy.com/){:target='_blank'} powers referral programs for e-commerce merchants of all sizes, providing an easy solution to launch Refer-a-Friend programs and accelerate growth through word of mouth. diff --git a/src/connections/destinations/catalog/actions-friendbuy/index.md b/src/connections/destinations/catalog/actions-friendbuy/index.md index c0e38ae6d8..466bcc91dc 100644 --- a/src/connections/destinations/catalog/actions-friendbuy/index.md +++ b/src/connections/destinations/catalog/actions-friendbuy/index.md @@ -3,8 +3,8 @@ title: Friendbuy Web Mode (Actions) Destination hide-boilerplate: true hide-dossier: false hidden: false +id: 6170a348128093cd0245e0ea --- - {% include content/plan-grid.md name="actions" %} diff --git a/src/connections/destinations/catalog/actions-fullstory/index.md b/src/connections/destinations/catalog/actions-fullstory/index.md index 29e9b1928c..3dd51f9b8a 100644 --- a/src/connections/destinations/catalog/actions-fullstory/index.md +++ b/src/connections/destinations/catalog/actions-fullstory/index.md @@ -2,6 +2,7 @@ title: FullStory (Actions) hide-boilerplate: true hide-dossier: false +id: 6141153ee7500f15d3838703 --- {% include content/plan-grid.md name="actions" %} diff --git a/src/connections/destinations/catalog/actions-google-analytics-4/index.md b/src/connections/destinations/catalog/actions-google-analytics-4/index.md index ab07082109..5d89d1f345 100644 --- a/src/connections/destinations/catalog/actions-google-analytics-4/index.md +++ b/src/connections/destinations/catalog/actions-google-analytics-4/index.md @@ -3,8 +3,8 @@ title: Google Analytics 4 Destination strat: google hide-boilerplate: true hide-dossier: false +id: 60ad61f9ff47a16b8fb7b5d9 --- - [Google Analytics 4](https://support.google.com/analytics/answer/10089681){:target="_blank"} is Google's new Analytics property, which you can use for both websites and applications. Google Analytics 4 has machine learning at its core to help surface insights and give you a more complete understanding of your customers across devices and platforms. When you have Segment installed, you can use your existing tracking implementation to fulfill your data collection needs with Google Analytics 4. Segment will send your data server-side to [Google's Measurement Protocol API](https://developers.google.com/analytics/devguides/collection/protocol/ga4). diff --git a/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md b/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md index d21509bf91..ddee891e1b 100644 --- a/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md +++ b/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md @@ -3,8 +3,8 @@ title: Google Enhanced Conversions Destination strat: google hide-boilerplate: true hide-dossier: false +id: 60ae8b97dcb6cc52d5d0d5ab --- - > info "" > This document is about a feature that is in beta. This means that the destination is in active development, and some functionality may change before it becomes generally available. diff --git a/src/connections/destinations/catalog/actions-slack/index.md b/src/connections/destinations/catalog/actions-slack/index.md index ef85636310..e995897aa0 100644 --- a/src/connections/destinations/catalog/actions-slack/index.md +++ b/src/connections/destinations/catalog/actions-slack/index.md @@ -2,6 +2,7 @@ title: Slack (Actions) Destination hide-boilerplate: true hide-dossier: false +id: 5f7dd8e302173ff732db5cc4 --- {% include content/plan-grid.md name="actions" %} diff --git a/src/connections/destinations/catalog/activecampaign/index.md b/src/connections/destinations/catalog/activecampaign/index.md index 863c968b92..3d09659d3c 100644 --- a/src/connections/destinations/catalog/activecampaign/index.md +++ b/src/connections/destinations/catalog/activecampaign/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: ActiveCampaign Destination +id: 55d66bb5ebe537b09c977fa3 --- - [ActiveCampaign](https://www.activecampaign.com) is an integrated email marketing, marketing automation, and small business CRM. It allows you to send beautiful newsletters, set up behavioral based automations, and benefit from sales automation. This destination is maintained by ActiveCampaign. For any issues with the destination, [contact the ActiveCampaign support team](https://www.activecampaign.com/contact/). diff --git a/src/connections/destinations/catalog/adikteev/index.md b/src/connections/destinations/catalog/adikteev/index.md index de728be305..048a67bcfb 100644 --- a/src/connections/destinations/catalog/adikteev/index.md +++ b/src/connections/destinations/catalog/adikteev/index.md @@ -1,8 +1,8 @@ --- hide-cmodes: true title: Adikteev Destination +id: 5c75564f1d2f34000116ef78 --- - This destination is maintained by Adikteev. For any issues with the destination, [contact the Adikteev support team](mailto:contact@adikteev.com). {% include content/beta-note.md %} diff --git a/src/connections/destinations/catalog/adjust/index.md b/src/connections/destinations/catalog/adjust/index.md index 799f684527..c9cdb91195 100644 --- a/src/connections/destinations/catalog/adjust/index.md +++ b/src/connections/destinations/catalog/adjust/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Adjust Destination +id: 56f6ce7280412f644ff12fb2 --- - [Adjust](https://adjust.com) is the mobile attribution provider of choice for hundreds of organizations across the globe. They unify all your marketing activities into one powerful platform, giving you the insights you need to scale your business. The Adjust Destination is open-source. You can browse the code on GitHub for [iOS](https://github.com/segment-integrations/analytics-ios-integration-adjust) and [Android](https://github.com/segment-integrations/analytics-android-integration-adjust). If you notice any gaps, out-dated information or simply want to leave some feedback to help us improve our documentation, [let us know](https://segment.com/help/contact)! diff --git a/src/connections/destinations/catalog/adlearn-open-platform/index.md b/src/connections/destinations/catalog/adlearn-open-platform/index.md index e99cbd574f..878997f560 100644 --- a/src/connections/destinations/catalog/adlearn-open-platform/index.md +++ b/src/connections/destinations/catalog/adlearn-open-platform/index.md @@ -1,4 +1,5 @@ --- title: 'AdLearn Open Platform Destination' hidden: true ---- \ No newline at end of file +id: 54521fd525e721e32a72ee93 +--- diff --git a/src/connections/destinations/catalog/adobe-analytics/index.md b/src/connections/destinations/catalog/adobe-analytics/index.md index 33615f7bf5..09e7001d5f 100644 --- a/src/connections/destinations/catalog/adobe-analytics/index.md +++ b/src/connections/destinations/catalog/adobe-analytics/index.md @@ -2,8 +2,8 @@ title: Adobe Analytics Destination strat: adobe redirect_from: '/connections/destinations/catalog/omniture/' +id: 5783cec280412f644ff14226 --- - Once you enable Adobe Analytics (formerly known as Omniture or Sitecatalyst) in Segment, you can start sending data from any of the Segment [libraries](/docs/connections/sources/catalog/) to an Adobe report suite. When you send events from Segment's mobile SDKs or Cloud-mode libraries, Segment translates that data using a mapping that you configure, and then passes it to the Adobe Analytics [Data Insertion API](https://docs.adobe.com/content/help/en/analytics/import/c-data-insertion-api.html). The following documentation provides detailed explanation of how both destination the Device-mode and Cloud-mode components work. For FAQs about Device- vs Cloud-mode tracking, unique users, identifiers, and more, see the Best Practices page! diff --git a/src/connections/destinations/catalog/adquick/index.md b/src/connections/destinations/catalog/adquick/index.md index aaee26b3fc..38c1c411a3 100644 --- a/src/connections/destinations/catalog/adquick/index.md +++ b/src/connections/destinations/catalog/adquick/index.md @@ -1,8 +1,8 @@ --- title: AdQuick Destination rewrite: true +id: 5d3638cd54d6be00014e6bf1 --- - [AdQuick](https://adquick.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) makes outdoor advertising easy to purchase and measure. By integrating with Segment you can analyze the impact of your outdoor ad campaign across all your digital channels. This destination is maintained by AdQuick. For any issues with the destination, [contact the AdQuick team](mailto:segment@adquick.com). diff --git a/src/connections/destinations/catalog/adroll/index.md b/src/connections/destinations/catalog/adroll/index.md index 131076ed51..1d4828b955 100644 --- a/src/connections/destinations/catalog/adroll/index.md +++ b/src/connections/destinations/catalog/adroll/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: AdRoll Destination +id: 54521fd525e721e32a72ee8e --- - [AdRoll](https://adroll.com/) is a retargeting network that allows you to show ads to visitors who've landed on your site while browsing the web. The AdRoll Destination is open-source. You can browse the code on [GitHub](https://github.com/segment-integrations/analytics.js-integration-adroll). ## Getting Started diff --git a/src/connections/destinations/catalog/adtriba/index.md b/src/connections/destinations/catalog/adtriba/index.md index cd72edd341..8416c2e824 100644 --- a/src/connections/destinations/catalog/adtriba/index.md +++ b/src/connections/destinations/catalog/adtriba/index.md @@ -1,9 +1,8 @@ --- rewrite: true title: Adtriba Destination +id: 5c7550de16b530000157a2d5 --- - - [Adtriba](https://www.adtriba.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) allows advertisers to track, control and optimize their marketing activities across all digital marketing channels through AI and user journey analysis. This destination is maintained by Adtriba. For any issues with the destination, [contact the Adtriba Support team](mailto:support@adtriba.com). diff --git a/src/connections/destinations/catalog/adwords-remarketing-lists/index.md b/src/connections/destinations/catalog/adwords-remarketing-lists/index.md index bc0b950bf4..3c36fce904 100644 --- a/src/connections/destinations/catalog/adwords-remarketing-lists/index.md +++ b/src/connections/destinations/catalog/adwords-remarketing-lists/index.md @@ -1,8 +1,8 @@ --- title: Google Adwords Remarketing Lists (Customer Match) Destination hide-boilerplate: true +id: 5a6b50f1c900fa00011858fd --- - > note "About Google destinations" > This page is about the **Google Adwords Remarketing Lists (Customer Match)** destination supported by Segment Personas. For documentation on other Google Destinations, see the pages below. diff --git a/src/connections/destinations/catalog/airship/index.md b/src/connections/destinations/catalog/airship/index.md index 71d89a46ab..e79324fc49 100644 --- a/src/connections/destinations/catalog/airship/index.md +++ b/src/connections/destinations/catalog/airship/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Airship Destination +id: 5d0ac1fbc12d700001651e34 --- - Airship gives brands the data, channels, orchestration and services they need to deliver push notifications, emails, SMS, in-app messages, and more to the right person at the right moment — building trust, boosting engagement, driving action, and growing value. [Airship Cloud-mode Destination integration](https://docs.airship.com/partners/segment/#destination) enables users to set Airship tags, attributes, and custom events through Segment's `identify`, `track`, and `group` API calls. diff --git a/src/connections/destinations/catalog/alexa/index.md b/src/connections/destinations/catalog/alexa/index.md index 124ff73559..addde43d59 100644 --- a/src/connections/destinations/catalog/alexa/index.md +++ b/src/connections/destinations/catalog/alexa/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Alexa Destination +id: 54521fd525e721e32a72ee90 --- [Alexa](https://www.alexa.com/) helps improve your website's SEO and conduct competitive analysis. They help your business get better marketing results. The Alexa Destination is open-source. You can browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-alexa). diff --git a/src/connections/destinations/catalog/algolia-insights/index.md b/src/connections/destinations/catalog/algolia-insights/index.md index bbe6ddd512..0c7c288934 100644 --- a/src/connections/destinations/catalog/algolia-insights/index.md +++ b/src/connections/destinations/catalog/algolia-insights/index.md @@ -4,8 +4,8 @@ rewrite: true layout: dest-test beta: true redirect_from: '/connections/destinations/catalog/algolia/' +id: 5d373a350abf930001a6b70f --- - [Algolia Insights](https://www.algolia.com/products/analytics/) lets you push events related to how your product is being used. Sending those events is a required step for using several Algolia features: - Click and conversion analytics diff --git a/src/connections/destinations/catalog/amazon-eventbridge/index.md b/src/connections/destinations/catalog/amazon-eventbridge/index.md index 0b85e24d02..948aa3a21f 100644 --- a/src/connections/destinations/catalog/amazon-eventbridge/index.md +++ b/src/connections/destinations/catalog/amazon-eventbridge/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Amazon EventBridge Destination +id: 5d1994fb320116000112aa12 --- [Amazon EventBridge](https://aws.amazon.com/eventbridge/) is the easiest way to onboard your Segment data into the AWS ecosystem. diff --git a/src/connections/destinations/catalog/amazon-kinesis-firehose/index.md b/src/connections/destinations/catalog/amazon-kinesis-firehose/index.md index 38729279b6..c13601af3a 100644 --- a/src/connections/destinations/catalog/amazon-kinesis-firehose/index.md +++ b/src/connections/destinations/catalog/amazon-kinesis-firehose/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Amazon Kinesis Firehose Destination +id: 59022a2270a3e552b955caa9 --- [Amazon Kinesis Firehose](https://aws.amazon.com/kinesis/data-firehose/) provides way to load streaming data into AWS. It can capture, transform, and load streaming data into Amazon Kinesis Analytics, Amazon S3, Amazon Redshift, and Amazon Elasticsearch Service, enabling near real-time analytics with existing business intelligence tools and dashboards you're already using today. It's a fully managed service that automatically scales to match the throughput of your data and requires no ongoing administration. It can also batch, compress, and encrypt the data before loading it, minimizing the amount of storage used at the destination and increasing security. diff --git a/src/connections/destinations/catalog/amazon-kinesis/index.md b/src/connections/destinations/catalog/amazon-kinesis/index.md index 03a6f0a412..c5a3a1af67 100644 --- a/src/connections/destinations/catalog/amazon-kinesis/index.md +++ b/src/connections/destinations/catalog/amazon-kinesis/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Amazon Kinesis Destination +id: 57da359580412f644ff33fb9 --- [Amazon Kinesis](https://aws.amazon.com/kinesis/) enables you to build custom applications that process or analyze streaming data for specialized needs. Amazon Kinesis Streams can continuously capture and store terabytes of data per hour from hundreds of thousands of sources such as website clickstreams, financial transactions, social media feeds, IT logs, and location-tracking events. diff --git a/src/connections/destinations/catalog/amazon-lambda/index.md b/src/connections/destinations/catalog/amazon-lambda/index.md index 65e3a73e5f..a022390875 100644 --- a/src/connections/destinations/catalog/amazon-lambda/index.md +++ b/src/connections/destinations/catalog/amazon-lambda/index.md @@ -2,8 +2,8 @@ title: Amazon Lambda Destination rewrite: true hide-personas-partial: true +id: 5c86f0512f5eb100013d570b --- - Segment makes it easy to send your data to AWS Lambda (and lots of other destinations). Once you collect your data using Segment's [open source libraries](/docs/connections/sources/catalog/), Segment translates and routes your data to AWS Lambda in the format it can use. [AWS Lambda](https://aws.amazon.com/lambda/){:target="_blank"} lets you run code without provisioning or managing servers. You pay only for the compute time you consume - there is no charge when your code is not running. diff --git a/src/connections/destinations/catalog/amazon-personalize/index.md b/src/connections/destinations/catalog/amazon-personalize/index.md index 8fc67373ca..46d0c67342 100644 --- a/src/connections/destinations/catalog/amazon-personalize/index.md +++ b/src/connections/destinations/catalog/amazon-personalize/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Amazon Personalize Destination +id: 5c7f0c9879726100019cc56b --- - Segment makes it easy to send your data to Amazon Personalize (and lots of other destinations). Once you collect your data using Segment's [open source libraries](/docs/connections/sources/catalog/), Segment translates and routes your data to Amazon Personalize in the format it can use. [Amazon Personalize](https://aws.amazon.com/personalize/) is a machine learning service that makes it easy for developers to create individualized recommendations for customers using their applications. AWS Personalize enables: - Media companies to provide recommended content for viewers based on their viewing history diff --git a/src/connections/destinations/catalog/ambassador/index.md b/src/connections/destinations/catalog/ambassador/index.md index f58f58e200..6e70f61358 100644 --- a/src/connections/destinations/catalog/ambassador/index.md +++ b/src/connections/destinations/catalog/ambassador/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Ambassador Destination +id: 573a3dfb80412f644ff13679 --- - [Ambassador](https://www.getambassador.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) empowers companies to easily create, track & manage custom incentives that drive referrals and evangelize their users. The Ambassador Destination is open-source. You can browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-ambassador). ## Getting Started diff --git a/src/connections/destinations/catalog/amplitude/index.md b/src/connections/destinations/catalog/amplitude/index.md index 410e932b93..af38f017a5 100644 --- a/src/connections/destinations/catalog/amplitude/index.md +++ b/src/connections/destinations/catalog/amplitude/index.md @@ -2,8 +2,8 @@ title: Amplitude Destination hide-cmodes: true maintenance: true +id: 54521fd525e721e32a72ee91 --- - [Amplitude](https://amplitude.com/) is an event tracking and segmentation platform for your web and mobile apps. By analyzing the actions your users perform, you can gain a better understanding to drive retention, engagement, diff --git a/src/connections/destinations/catalog/anodot/index.md b/src/connections/destinations/catalog/anodot/index.md index 209a3a057c..3264445555 100644 --- a/src/connections/destinations/catalog/anodot/index.md +++ b/src/connections/destinations/catalog/anodot/index.md @@ -1,6 +1,7 @@ --- title: Anodot Destination rewrite: true +id: 5feb4422ecbab07ade913573 --- [Anodot](https://www.anodot.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) rapidly identifies revenue-critical issues by leveraging AI to constantly monitor and correlate business performance, providing real-time alerts and forecasts. diff --git a/src/connections/destinations/catalog/appcues/index.md b/src/connections/destinations/catalog/appcues/index.md index cd02775398..16c9880a3c 100644 --- a/src/connections/destinations/catalog/appcues/index.md +++ b/src/connections/destinations/catalog/appcues/index.md @@ -2,6 +2,7 @@ rewrite: true title: Appcues Destination hide-cmodes: true +id: 554926390a20f4e22f0fb38a --- [Appcues](https://www.appcues.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) adds an experience layer to your product so you can build user onboarding, NPS surveys, or feature announcements in minutes instead of weeks. The Appcues JavaScript Destination is open-source. You can browse the code [on GitHub](https://github.com/appcues/analytics.js-integration-appcues). diff --git a/src/connections/destinations/catalog/appnexus/index.md b/src/connections/destinations/catalog/appnexus/index.md index 56f80f114c..50ba754ee3 100644 --- a/src/connections/destinations/catalog/appnexus/index.md +++ b/src/connections/destinations/catalog/appnexus/index.md @@ -1,4 +1,5 @@ --- title: 'AppNexus Destination' hidden: true ---- \ No newline at end of file +id: 54521fd525e721e32a72ee95 +--- diff --git a/src/connections/destinations/catalog/appsflyer/index.md b/src/connections/destinations/catalog/appsflyer/index.md index 14d9d8c850..e221080b78 100644 --- a/src/connections/destinations/catalog/appsflyer/index.md +++ b/src/connections/destinations/catalog/appsflyer/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: AppsFlyer Destination +id: 54521fd525e721e32a72ee8f --- [AppsFlyer](https://www.appsflyer.com/) is the world's leading mobile attribution & marketing analytics platform, helping app marketers around the world make better decisions. Our AppsFlyer destination code is open-source. You can browse the code on GitHub for [iOS](https://github.com/AppsFlyerSDK/segment-appsflyer-ios) and [Android](https://github.com/AppsFlyerSDK/AppsFlyer-Segment-Integration). diff --git a/src/connections/destinations/catalog/apptimize/index.md b/src/connections/destinations/catalog/apptimize/index.md index e2170cd441..a24f9db1d2 100644 --- a/src/connections/destinations/catalog/apptimize/index.md +++ b/src/connections/destinations/catalog/apptimize/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Apptimize Destination +id: 5537d3e80a20f4e22f0fb385 --- [Apptimize](https://apptimize.com/) empowers product teams to efficiently run A/B tests, rollout and manage new features, and deliver personalized user experiences. Our Apptimize destination code is open-source. You can browse the code on GitHub for [iOS](https://github.com/Apptimize/analytics-ios-integration-apptimize) and [Android](https://github.com/Apptimize/analytics-android-integration-apptimize). diff --git a/src/connections/destinations/catalog/asayer/index.md b/src/connections/destinations/catalog/asayer/index.md index 954ec3ac6c..76968b55de 100644 --- a/src/connections/destinations/catalog/asayer/index.md +++ b/src/connections/destinations/catalog/asayer/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Asayer Destination +id: 5d00754256e478000114784f --- [Asayer](https://asayer.io) is a session replay tool for engineering teams. It lets you capture the full picture of each user session on your website so you can quickly solve issues and improve your customer experience. diff --git a/src/connections/destinations/catalog/atatus/index.md b/src/connections/destinations/catalog/atatus/index.md index bd86ff2ed3..f107bd12da 100644 --- a/src/connections/destinations/catalog/atatus/index.md +++ b/src/connections/destinations/catalog/atatus/index.md @@ -1,4 +1,5 @@ --- title: 'Atatus Destination' hidden: true ---- \ No newline at end of file +id: 54c02204db31d978f14a7f6d +--- diff --git a/src/connections/destinations/catalog/attribution/index.md b/src/connections/destinations/catalog/attribution/index.md index 24cbd140da..55fc1ae7e2 100644 --- a/src/connections/destinations/catalog/attribution/index.md +++ b/src/connections/destinations/catalog/attribution/index.md @@ -1,6 +1,7 @@ --- title: Attribution Destination rewrite: true +id: 54521fd525e721e32a72ee96 --- [Attribution](http://attributionapp.com/) is an easy to use one stop dashboard for multi-touch attribution across all marketing channels. Attribution prides itself on high-fidelity and allows marketers to trace every visit, conversion or revenue dollar to the source. Marketers can easily integrate Attribution and Segment to begin measuring the effectiveness of their campaigns today. diff --git a/src/connections/destinations/catalog/auryc/index.md b/src/connections/destinations/catalog/auryc/index.md index 16f61692f2..bd1f3d34cd 100644 --- a/src/connections/destinations/catalog/auryc/index.md +++ b/src/connections/destinations/catalog/auryc/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Auryc Destination +id: 5cae592103251a0001c2820a --- [Auryc](https://www.auryc.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a client-side journey intelligence platform that surfaces real-time insights with powerful visual context across all of your digital ecommerce journeys. Auryc helps enterprises find and resolve the customer journey issues that directly impact conversions and customer satisfaction. diff --git a/src/connections/destinations/catalog/autopilotapp/index.md b/src/connections/destinations/catalog/autopilotapp/index.md index 3d0c4d642e..ae7ad18c54 100644 --- a/src/connections/destinations/catalog/autopilotapp/index.md +++ b/src/connections/destinations/catalog/autopilotapp/index.md @@ -2,8 +2,8 @@ title: AutopilotApp Destination rewrite: true beta: true +id: 613ef845b8784e858199fe2d --- - [Autopilot](https://autopilotapp.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps thousands of organizations around the world automate their communications via email notifications, such as regular email newsletters, abandoned cart emails, as well as SMS messages, and more, to help organizations market and grow their businesses faster. Once you connect Segment to AutopilotApp (the Autopilot product), you can leverage Autopilot's powerful [campaign](https://help.autopilotapp.com/user/latest/campaigns/) features on your Segment customer data. diff --git a/src/connections/destinations/catalog/autopilothq/index.md b/src/connections/destinations/catalog/autopilothq/index.md index a9eef65024..b7b641ce75 100644 --- a/src/connections/destinations/catalog/autopilothq/index.md +++ b/src/connections/destinations/catalog/autopilothq/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Autopilot Destination +id: 5515e05c0a20f4e22f0fb36f --- [Autopilot](https://www.autopilothq.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps thousands of organizations around the world automate their marketing with visual and simple customer journey marketing software. diff --git a/src/connections/destinations/catalog/aws-s3/index.md b/src/connections/destinations/catalog/aws-s3/index.md index 39c9e33ed0..008cf1eae7 100644 --- a/src/connections/destinations/catalog/aws-s3/index.md +++ b/src/connections/destinations/catalog/aws-s3/index.md @@ -1,4 +1,5 @@ --- title: 'AWS S3 Destination' hidden: false +id: 60be92c8dabdd561bf6c9130 --- diff --git a/src/connections/destinations/catalog/azure-function/index.md b/src/connections/destinations/catalog/azure-function/index.md index 15ad10db14..94fb075bd9 100644 --- a/src/connections/destinations/catalog/azure-function/index.md +++ b/src/connections/destinations/catalog/azure-function/index.md @@ -2,8 +2,8 @@ rewrite: true beta: true title: Azure Function Destination +id: 5cbf95e258453600011d6d8f --- - Segment makes it easy to send your data to Azure Function (and lots of other destinations). When you track your data using Segment's open-source [libraries](/docs/connections/sources/catalog/), Segment can translate and route your data to an Azure Function in the format it expects. [Azure Function](https://azure.microsoft.com/en-us/services/functions) is a serverless compute service that enables you to run code on-demand without having to explicitly provision or manage infrastructure. Use Azure Functions to run a script or piece of code in response to a variety of events. diff --git a/src/connections/destinations/catalog/batch/index.md b/src/connections/destinations/catalog/batch/index.md index 6049da9ca5..85432c091a 100644 --- a/src/connections/destinations/catalog/batch/index.md +++ b/src/connections/destinations/catalog/batch/index.md @@ -1,8 +1,8 @@ --- title: Batch Destination beta: true +id: 596d11f870a3e552b957e6d9 --- - The Batch.com integration code is open sourced on GitHub. Feel free to check it out: [iOS](https://github.com/BatchLabs/ios-segment-integration), [Android](https://github.com/BatchLabs/android-segment-integration). ## Getting Started diff --git a/src/connections/destinations/catalog/beamer/index.md b/src/connections/destinations/catalog/beamer/index.md index 58b0327346..3518075d68 100644 --- a/src/connections/destinations/catalog/beamer/index.md +++ b/src/connections/destinations/catalog/beamer/index.md @@ -2,8 +2,8 @@ title: Beamer Destination beta: true rewrite: true +id: 5d2d8f56f159f30001b3c3a9 --- - [Beamer](https://www.getbeamer.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a changelog and notification center that lets you announce new features, product updates, special offers and more. This destination is maintained by Beamer. For any issues with the destination, [contact the Beamer Support team](mailto:info@getbeamer.com). diff --git a/src/connections/destinations/catalog/bing-ads/index.md b/src/connections/destinations/catalog/bing-ads/index.md index a71fd3450d..41d11ee1f9 100644 --- a/src/connections/destinations/catalog/bing-ads/index.md +++ b/src/connections/destinations/catalog/bing-ads/index.md @@ -1,8 +1,8 @@ --- title: Bing Ads Destination rewrite: true +id: 54521fd525e721e32a72ee97 --- - [Bing Ads](https://bingads.microsoft.com) enables Marketers to track and monitor campaigns, clicks, CTRs, spend and budget. Bing Ads lets you place cross-device product ads in front of Bing, Yahoo, and MSN customers and support imported pay-per-click ad campaigns from third-party platforms like Google AdWords. With Bing Ads you can also retarget ads to customers after they complete an action like leaving a shopping cart or viewing a product without purchasing. Learn more about all you can do with Bing Ads [here](https://advertise.bingads.microsoft.com/en-us/resources/training/what-is-bing-ads). You can also browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-bing-ads). ## Getting Started diff --git a/src/connections/destinations/catalog/blendo/index.md b/src/connections/destinations/catalog/blendo/index.md index 2ec78d32f1..8497db2cca 100644 --- a/src/connections/destinations/catalog/blendo/index.md +++ b/src/connections/destinations/catalog/blendo/index.md @@ -1,8 +1,8 @@ --- title: Blendo Destination rewrite: true +id: 5c6db002edda600001b2af8b --- - [Blendo](https://www.blendo.co/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is an ELT platform that syncs all your sales, marketing, financial or any other data, from your SaaS tools to your data warehouse. This destination is maintained by Blendo. For any issues with the destination, [contact the Blendo Support team](mailto:help@blendo.co). diff --git a/src/connections/destinations/catalog/blueshift/index.md b/src/connections/destinations/catalog/blueshift/index.md index 7559178ef5..b6bcb91451 100644 --- a/src/connections/destinations/catalog/blueshift/index.md +++ b/src/connections/destinations/catalog/blueshift/index.md @@ -1,4 +1,5 @@ --- title: 'Blueshift Destination' hidden: true ---- \ No newline at end of file +id: 547610a5db31d978f14a5c4e +--- diff --git a/src/connections/destinations/catalog/branch-metrics/index.md b/src/connections/destinations/catalog/branch-metrics/index.md index 982f36e0d5..c94762060f 100644 --- a/src/connections/destinations/catalog/branch-metrics/index.md +++ b/src/connections/destinations/catalog/branch-metrics/index.md @@ -2,8 +2,8 @@ title: Branch Destination rewrite: true hide-personas-partial: true +id: 5642909ae954a874ca44c582 --- - [Branch](https://branch.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) empowers you to increase mobile revenue with enterprise-grade links built to acquire, engage, and measure across all devices, channels, and platforms. An industry-leading mobile measurement and deep linking platform, trusted by the most top ranking apps to increase efficiency and revenue. --- diff --git a/src/connections/destinations/catalog/braze-cloud-mode-actions/index.md b/src/connections/destinations/catalog/braze-cloud-mode-actions/index.md index 1fe4547620..43f84469f7 100644 --- a/src/connections/destinations/catalog/braze-cloud-mode-actions/index.md +++ b/src/connections/destinations/catalog/braze-cloud-mode-actions/index.md @@ -4,6 +4,7 @@ hide-boilerplate: true hide-dossier: false redirect_from: - '/connections/destinations/catalog/actions-braze-cloud/' +id: 60f9d0d048950c356be2e4da --- {% include content/plan-grid.md name="actions" %} diff --git a/src/connections/destinations/catalog/braze-web-device-mode-actions/index.md b/src/connections/destinations/catalog/braze-web-device-mode-actions/index.md index 94af21432f..5875efc9ec 100644 --- a/src/connections/destinations/catalog/braze-web-device-mode-actions/index.md +++ b/src/connections/destinations/catalog/braze-web-device-mode-actions/index.md @@ -4,6 +4,7 @@ hide-boilerplate: true hide-dossier: false redirect_from: - '/connections/destinations/catalog/actions-braze-web/' +id: 60fb01aec459242d3b6f20c1 --- {% include content/plan-grid.md name="actions" %} diff --git a/src/connections/destinations/catalog/braze/index.md b/src/connections/destinations/catalog/braze/index.md index 6ad7e3bc9b..3c6ea6ccc2 100644 --- a/src/connections/destinations/catalog/braze/index.md +++ b/src/connections/destinations/catalog/braze/index.md @@ -5,8 +5,8 @@ hide-personas-partial: true hide-integrations-object: true maintenance: true maintenance-content: "New versions of this destination are available. See [Braze Cloud Mode (Actions)](/docs/connections/destinations/catalog/braze-cloud-mode-actions) and [Braze Web Mode (Actions)](/docs/connections/destinations/catalog/braze-web-device-mode-actions)." +id: 54efbf12db31d978f14aa8b5 --- - [Braze](https://www.braze.com/), formerly Appboy, is an engagement platform that empowers growth by helping marketing teams to build customer loyalty through mobile, omni-channel customer experiences. The Braze Destination is open-sourced on GitHub. Source code for the following integrations is available: diff --git a/src/connections/destinations/catalog/bronto/index.md b/src/connections/destinations/catalog/bronto/index.md index d89f4f0df8..0d926b3059 100644 --- a/src/connections/destinations/catalog/bronto/index.md +++ b/src/connections/destinations/catalog/bronto/index.md @@ -1,7 +1,7 @@ --- title: Bronto Destination +id: 54521fd525e721e32a72ee98 --- - Our Bronto destination code is open-source on GitHub if you want to [check it out](https://github.com/segment-integrations/analytics.js-integration-bronto). ## Getting Started diff --git a/src/connections/destinations/catalog/bucket/index.md b/src/connections/destinations/catalog/bucket/index.md index ad5bf4b1ed..8ae91ee1de 100644 --- a/src/connections/destinations/catalog/bucket/index.md +++ b/src/connections/destinations/catalog/bucket/index.md @@ -1,6 +1,7 @@ --- title: Bucket Destination rewrite: true +id: 5fabc0b00f88248bbce4db48 --- [Bucket](https://bucket.so/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) features analytics for SaaS companies. diff --git a/src/connections/destinations/catalog/bugherd/index.md b/src/connections/destinations/catalog/bugherd/index.md index 37cf8120ff..afe470a1b9 100644 --- a/src/connections/destinations/catalog/bugherd/index.md +++ b/src/connections/destinations/catalog/bugherd/index.md @@ -1,6 +1,7 @@ --- title: BugHerd Destination rewrite: true +id: 54521fd525e721e32a72ee99 --- [BugHerd](http://bugherd.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a bug tracking software that lets users report bugs right in your interface. Once reported, you get a Trello-like management interface for taking care of the issues. The `analytics.js` BugHerd Destination is open-source. You can browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-bugherd). diff --git a/src/connections/destinations/catalog/bugsnag/index.md b/src/connections/destinations/catalog/bugsnag/index.md index 5deef05725..1672b52af8 100644 --- a/src/connections/destinations/catalog/bugsnag/index.md +++ b/src/connections/destinations/catalog/bugsnag/index.md @@ -1,8 +1,8 @@ --- title: Bugsnag Destination rewrite: true +id: 54521fd525e721e32a72ee9b --- - [Bugsnag](https://docs.bugsnag.com/api/data-access/) helps you detect and diagnose crashes in your application. Depending on the data you provide, Bugsnag can filter errors based on user name, user email, timeline, release stages, paying user status, and more. At the moment, we support the following integrations: diff --git a/src/connections/destinations/catalog/button/index.md b/src/connections/destinations/catalog/button/index.md index e07ff149f1..1b68b79cb2 100644 --- a/src/connections/destinations/catalog/button/index.md +++ b/src/connections/destinations/catalog/button/index.md @@ -1,6 +1,7 @@ --- title: Button Destination rewrite: true +id: 5f99f7f79cecdd08a8e22c4f --- [Button](https://usebutton.com?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is the mobile commerce technology company that is powering a commerce-driven internet. The Button platform powers mobile business growth for the world’s largest brands and publishers, while offering consumers more seamless, enjoyable experiences. diff --git a/src/connections/destinations/catalog/buzzboard/index.md b/src/connections/destinations/catalog/buzzboard/index.md index 6af4324d43..7a35fd0ce8 100644 --- a/src/connections/destinations/catalog/buzzboard/index.md +++ b/src/connections/destinations/catalog/buzzboard/index.md @@ -3,8 +3,8 @@ title: 'BuzzBoard Destination' rewrite: true beta: true redirect_from: '/connections/destinations/catalog/smbstream/' +id: 5ca76cbb1a6b900001618e74 --- - [BuzzBoard](https://www.buzzboard.com/smbstreams/solutions/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) provides self-serve predictive analytics for growth marketers, leveraging machine learning to automate audience insights and recommendations. The most comprehensive set of data is maintained, integrated and then delivered as important insights across your sales and marketing organization. This destination is maintained by BuzzBoard. For any issues with the destination, [contact the BuzzBoard Support team](mailto:support@buzzboard.com). diff --git a/src/connections/destinations/catalog/bytegain/index.md b/src/connections/destinations/catalog/bytegain/index.md index 3b12e13eeb..96146d9d74 100644 --- a/src/connections/destinations/catalog/bytegain/index.md +++ b/src/connections/destinations/catalog/bytegain/index.md @@ -1,6 +1,7 @@ --- title: ByteGain Destination rewrite: true +id: 5c9c28081e78ca0001031b81 --- [ByteGain](https://bytegain.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is an Artificial Intelligence platform that learns from online user behavior to predict and automate the exact actions needed to engage, convert, and retain customers. ByteGain's software analyzes billions of data points on a website to identify patterns in journeys enabling real-time predictions, and improves over time due to its self-learning nature. The platform then uses these predictions to intelligently automate ad retargeting, personalization, content recommendations, and more. diff --git a/src/connections/destinations/catalog/byteplus/index.md b/src/connections/destinations/catalog/byteplus/index.md index 8091bea811..f8f04e09fb 100644 --- a/src/connections/destinations/catalog/byteplus/index.md +++ b/src/connections/destinations/catalog/byteplus/index.md @@ -4,8 +4,8 @@ title: BytePlus redirect_from: - '/connections/destinations/catalog/datarangers/' beta: true +id: 60347eb973e8ce37bc360568 --- - BytePlus provides product analytics for mobile and web applications, including event/retention/funnel/error analysis, user segmentation, user paths, behavior lookup, A/B testing, and other functions. In addition to the docs below, please reference the [BytePlus integration guide](https://docs.byteplus.com/data-intelligence/docs/sdk-integration-1){:target="_blank"}. diff --git a/src/connections/destinations/catalog/calixa/index.md b/src/connections/destinations/catalog/calixa/index.md index a74c5fdd00..3a7e302c91 100644 --- a/src/connections/destinations/catalog/calixa/index.md +++ b/src/connections/destinations/catalog/calixa/index.md @@ -1,8 +1,8 @@ --- title: Calixa Destination rewrite: true +id: 5df41c5d2f4a8cd2b74b5725 --- - [Calixa](https://www.calixa.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) makes it easy to manage all your customers in one place. No more jumping around from tool to tool, learning SQL, or maintaining internal tools. Calixa connects to the third party SaaS tools you use (like Stripe, Zendesk, and Intercom) so that you can see everything about your customers and take action in one place. This destination is maintained by Calixa. For any issues with the destination, [contact the Calixa support team](mailto:team@calixa.io). diff --git a/src/connections/destinations/catalog/callingly/index.md b/src/connections/destinations/catalog/callingly/index.md index 1427d128dd..cd9b316682 100644 --- a/src/connections/destinations/catalog/callingly/index.md +++ b/src/connections/destinations/catalog/callingly/index.md @@ -1,8 +1,8 @@ --- title: Callingly Destination rewrite: true +id: 5c953ce33407d0000104d495 --- - [Callingly](https://callingly.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) automatically gets your sales team on the phone with your incoming leads within seconds, generating better results and happy customers. This destination is maintained by Callingly. For any issues with the destination, [contact the Callingly Support team](mailto:support@callingly.com). diff --git a/src/connections/destinations/catalog/candu/index.md b/src/connections/destinations/catalog/candu/index.md index c435d5b6fb..b845c2167b 100644 --- a/src/connections/destinations/catalog/candu/index.md +++ b/src/connections/destinations/catalog/candu/index.md @@ -2,8 +2,8 @@ title: Candu Destination rewrite: true beta: true +id: 5c7df2eafeed45000121a49e --- - [Candu](https://www.candu.ai/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is the first Editor for your app. Instead of overlaying an experience layer, Candu’s embedded components inherit your style guide, so they look like a native part of your interface. Candu helps you build, iterate, and personalize native onboarding experiences that guide your end-users from basic to expert-level fluency. This destination is maintained by Candu Labs. For any issues with the destination, [contact the Candu Support team](mailto:support@candu.ai). diff --git a/src/connections/destinations/catalog/canny/index.md b/src/connections/destinations/catalog/canny/index.md index 8029e04704..fc5cc54356 100644 --- a/src/connections/destinations/catalog/canny/index.md +++ b/src/connections/destinations/catalog/canny/index.md @@ -3,8 +3,8 @@ title: Canny Destination rewrite: true hide-dossier: true redirect_from: '/connections/destinations/catalog/canny-functions/' +id: 609d2b40f4bd0f24a5a37fbb --- - [Canny](https://canny.io) is a single place for all customer feedback. It saves you time managing all the feedback while keeping your customers in the loop. Let your customers post and vote on feedback from within your website or mobile app. You'll get an organized list of feedback that you can use to inform your roadmap. This destination is maintained by Canny. For any issues with the destination, [contact the Canny Support team](mailto:segment-help@canny.io). diff --git a/src/connections/destinations/catalog/castle/index.md b/src/connections/destinations/catalog/castle/index.md index 35e8f07bb3..f4a389a648 100644 --- a/src/connections/destinations/catalog/castle/index.md +++ b/src/connections/destinations/catalog/castle/index.md @@ -1,7 +1,7 @@ --- title: Castle Destination +id: 56a8f566e954a874ca44d3b0 --- - Once you enable the Castle integration, the [Castle JavaScript snippet](https://docs.castle.io/docs/sdk-browser) is placed on your website, and user data starts appearing in the Castle dashboard. Client-side tracking works out of the box, however **your existing server-side calls need to be extended** with data from the incoming request. diff --git a/src/connections/destinations/catalog/chameleon/index.md b/src/connections/destinations/catalog/chameleon/index.md index 26edc3a83d..c359105ff2 100644 --- a/src/connections/destinations/catalog/chameleon/index.md +++ b/src/connections/destinations/catalog/chameleon/index.md @@ -1,7 +1,7 @@ --- title: Chameleon Destination +id: 555a14f80a20f4e22f0fb38d --- - Our Chameleon destination code is open-source on GitHub if you want to [check it out](https://github.com/segment-integrations/analytics.js-integration-chameleon). ## Getting started diff --git a/src/connections/destinations/catalog/chartbeat/index.md b/src/connections/destinations/catalog/chartbeat/index.md index 485825285c..070b02eca6 100644 --- a/src/connections/destinations/catalog/chartbeat/index.md +++ b/src/connections/destinations/catalog/chartbeat/index.md @@ -1,7 +1,7 @@ --- title: Chartbeat Destination +id: 54521fd525e721e32a72ee9d --- - Our Chartbeat destination code is open-source on GitHub if you want to [check it out](https://github.com/segment-integrations/analytics.js-integration-chartbeat). ## Getting Started diff --git a/src/connections/destinations/catalog/churnzero/index.md b/src/connections/destinations/catalog/churnzero/index.md index 592b3de450..7bb0c1e942 100644 --- a/src/connections/destinations/catalog/churnzero/index.md +++ b/src/connections/destinations/catalog/churnzero/index.md @@ -1,8 +1,8 @@ --- title: ChurnZero Destination rewrite: true +id: 5c6386ce6b340800017691fa --- - [ChurnZero](https://churnzero.net/) is a real-time Customer Success platform that helps subscription businesses fight churn, expand current accounts, increase product adoption and optimize the customer experience. This destination is maintained by ChurnZero. For any issues with the destination, [contact the ChurnZero Support team](mailto:support@churnzero.net). diff --git a/src/connections/destinations/catalog/clearbit-enrichment/index.md b/src/connections/destinations/catalog/clearbit-enrichment/index.md index 9a2c499173..d6f0564d27 100644 --- a/src/connections/destinations/catalog/clearbit-enrichment/index.md +++ b/src/connections/destinations/catalog/clearbit-enrichment/index.md @@ -1,8 +1,8 @@ --- title: Clearbit Enrichment Destination rewrite: true +id: 576af9ca80412f644ff13b87 --- - [Clearbit Enrichment](https://clearbit.com/segment) helps customers enrich and append real-time data to an email or domain, driving growth or powering your product with social data, location, job title, company size and technology. ## Getting Started diff --git a/src/connections/destinations/catalog/clearbit-reveal/index.md b/src/connections/destinations/catalog/clearbit-reveal/index.md index d7d51a235f..35ca0a6230 100644 --- a/src/connections/destinations/catalog/clearbit-reveal/index.md +++ b/src/connections/destinations/catalog/clearbit-reveal/index.md @@ -1,8 +1,8 @@ --- title: Clearbit Reveal Destination rewrite: true +id: 57e0726680412f644ff36883 --- - [Clearbit Reveal](https://clearbit.com/segment) helps customers instantly match IP addresses with company names, and see full profiles for all site visitors. It turns your anonymous web traffic into a full company profile — complete with industry, employee count, funding details, and much more. You can find a list of the different attributes you can collect with Clearbit [here](https://clearbit.com/attributes). This destination is maintained by Clearbit. For any issues with the destination, [contact the Clearbit Support team](mailto:support@clearbit.com) diff --git a/src/connections/destinations/catalog/clearbrain/index.md b/src/connections/destinations/catalog/clearbrain/index.md index 0bb5dbda43..980196467f 100644 --- a/src/connections/destinations/catalog/clearbrain/index.md +++ b/src/connections/destinations/catalog/clearbrain/index.md @@ -1,8 +1,8 @@ --- title: ClearBrain Destination rewrite: true +id: 5c412bc57526b50001622f52 --- - [ClearBrain](https://clearbrain.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) provides self-serve predictive analytics for growth marketers, using machine learning to automate audience insights and recommendations. This destination is maintained by ClearBrain. For any issues with the destination, [contact the ClearBrain Support team](mailto:support@clearbrain.com). diff --git a/src/connections/destinations/catalog/clevertap/index.md b/src/connections/destinations/catalog/clevertap/index.md index ad6040dab2..255fda8c30 100644 --- a/src/connections/destinations/catalog/clevertap/index.md +++ b/src/connections/destinations/catalog/clevertap/index.md @@ -1,7 +1,7 @@ --- title: CleverTap Destination +id: 5711271880412f644ff13150 --- - ## Getting Started Once the Segment library is integrated, toggle CleverTap on in your Segment destinations, and add your CleverTap Account ID and CleverTap Account Token which you can find in the CleverTap Dashboard under Settings. diff --git a/src/connections/destinations/catalog/clicky/index.md b/src/connections/destinations/catalog/clicky/index.md index cf71b8ef6c..48baf41db7 100644 --- a/src/connections/destinations/catalog/clicky/index.md +++ b/src/connections/destinations/catalog/clicky/index.md @@ -1,8 +1,8 @@ --- title: Clicky Destination rewrite: true +id: 54521fd525e721e32a72eea2 --- - [Clicky](https://clicky.com/) is a web analytics tool that enables you to monitor, analyze, and react to your blog or web site's traffic in real time. Clicky supports user segmentation, so marketers can define and track customers based on unique constraints like user action, traffic source, location, or device. Additionally, it allows on-site analytics in order to track total visitors on site, pages currently viewed, and user actions like pageviews, downloads, sign ups, and session duration. Our Clicky destination code is open-source on GitHub. You can check out the code [here](https://github.com/segment-integrations/analytics.js-integration-clicky). diff --git a/src/connections/destinations/catalog/clientsuccess/index.md b/src/connections/destinations/catalog/clientsuccess/index.md index 60773b88f3..4844d55454 100644 --- a/src/connections/destinations/catalog/clientsuccess/index.md +++ b/src/connections/destinations/catalog/clientsuccess/index.md @@ -1,8 +1,8 @@ --- title: ClientSuccess Destination hide-personas-partial: true +id: 55677dfd0a20f4e22f0fb39a --- - This destination is maintained by ClientSuccess. ## Getting Started (for CSMs) diff --git a/src/connections/destinations/catalog/cliff/index.md b/src/connections/destinations/catalog/cliff/index.md index f410d3cdb8..9a020e0b50 100644 --- a/src/connections/destinations/catalog/cliff/index.md +++ b/src/connections/destinations/catalog/cliff/index.md @@ -1,6 +1,7 @@ --- title: Cliff Destination rewrite: true +id: 603bebf26429db1da7b36150 --- [Cliff](https://cliff.ai/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) monitors all your metrics in real time, detects unexpected changes (such as a sudden spike or dip), and notifies you immediately. It also shows you the root cause behind the unexpected change. diff --git a/src/connections/destinations/catalog/comscore/index.md b/src/connections/destinations/catalog/comscore/index.md index 1a456f7fd2..2982b1b7bd 100644 --- a/src/connections/destinations/catalog/comscore/index.md +++ b/src/connections/destinations/catalog/comscore/index.md @@ -1,7 +1,7 @@ --- title: comScore Destination +id: 54521fd525e721e32a72eea1 --- - Segment's comScore destination code is open source and available on GitHub. Feel free to check it out: - [Javascript](https://github.com/segmentio/analytics.js-integrations/tree/master/integrations/comscore) - [iOS](https://github.com/segment-integrations/analytics-ios-integration-comscore) diff --git a/src/connections/destinations/catalog/convertflow/index.md b/src/connections/destinations/catalog/convertflow/index.md index be7aae7277..0754a59570 100644 --- a/src/connections/destinations/catalog/convertflow/index.md +++ b/src/connections/destinations/catalog/convertflow/index.md @@ -1,6 +1,7 @@ --- title: ConvertFlow Destination rewrite: true +id: 5cb607714cab700001f13480 --- [ConvertFlow](https://www.convertflow.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is the all-in-one platform for converting your website visitors. From one builder, you can create, personalize and launch dynamic website content, forms, popups, sticky bars, surveys, quizzes and landing pages, without coding. diff --git a/src/connections/destinations/catalog/convertro/index.md b/src/connections/destinations/catalog/convertro/index.md index 32d65e1c73..ff93316586 100644 --- a/src/connections/destinations/catalog/convertro/index.md +++ b/src/connections/destinations/catalog/convertro/index.md @@ -1,7 +1,7 @@ --- title: Convertro Destination +id: 54521fd525e721e32a72eea4 --- - ## Getting Started Our Convertro destination lets you track customer data from either your website data or your mobile data. When you send data using `analytics.js` Segment uses Convertro's JS library to send `.identify()` and `.track()` data. diff --git a/src/connections/destinations/catalog/countly/index.md b/src/connections/destinations/catalog/countly/index.md index e4b838166c..af294f4b3e 100644 --- a/src/connections/destinations/catalog/countly/index.md +++ b/src/connections/destinations/catalog/countly/index.md @@ -1,7 +1,7 @@ --- title: Countly Destination +id: 54521fd525e721e32a72eea5 --- - The Countly destination source code for [iOS](https://github.com/Countly/countly-sdk-ios){:target="_blank"} and [Android](https://github.com/Countly/countly-sdk-android){:target="_blank"} is available on GitHub. ## Getting Started diff --git a/src/connections/destinations/catalog/courier/index.md b/src/connections/destinations/catalog/courier/index.md index 8acbc97f8b..48c960f2d6 100644 --- a/src/connections/destinations/catalog/courier/index.md +++ b/src/connections/destinations/catalog/courier/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Courier Destination +id: 5e4b07ed88472cc19ea4f8d0 --- - [Courier](https://courier.com?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) provides a way to design and deliver notifications. Design once with a rich visual editor and deliver to any channel through one API request. This destination is maintained by Courier. For any issues with the destination, [contact the Courier support team](mailto:support@courier.com). diff --git a/src/connections/destinations/catalog/crazy-egg/index.md b/src/connections/destinations/catalog/crazy-egg/index.md index 3c838f5609..681f17e0b4 100644 --- a/src/connections/destinations/catalog/crazy-egg/index.md +++ b/src/connections/destinations/catalog/crazy-egg/index.md @@ -1,8 +1,8 @@ --- title: Crazy Egg Destination rewrite: true +id: 54521fd525e721e32a72eea7 --- - [Crazy Egg](https://www.crazyegg.com/) is a user testing tool that gives you heatmaps, clickmaps and scrollmaps of your visitors interacting with your site. It helps you learn where your users are having trouble. The Crazy Egg Destination is open-source. You can browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-crazy-egg). ## Getting Started diff --git a/src/connections/destinations/catalog/crisp/index.md b/src/connections/destinations/catalog/crisp/index.md index 0832435d47..8fdad84c34 100644 --- a/src/connections/destinations/catalog/crisp/index.md +++ b/src/connections/destinations/catalog/crisp/index.md @@ -1,6 +1,7 @@ --- - title: Crisp Destination +title: Crisp Destination rewrite: true +id: 5d284cc671bb1c0001f41d2a --- [Crisp](https://crisp.chat/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is an all-in-one solution to communicate with your customers using text-messaging. diff --git a/src/connections/destinations/catalog/criteo-app-web-events/index.md b/src/connections/destinations/catalog/criteo-app-web-events/index.md index 8b055671b2..34c5dcd149 100644 --- a/src/connections/destinations/catalog/criteo-app-web-events/index.md +++ b/src/connections/destinations/catalog/criteo-app-web-events/index.md @@ -4,8 +4,8 @@ rewrite: true cmode-override: true hide-cmodes: true redirect_from: '/connections/destinations/catalog/criteo/' +id: 5787cc5180412f644ff14d7e --- - ## Getting Started > info "Information about Criteo App & Web Events and Analytics.js" diff --git a/src/connections/destinations/catalog/criteo-offline-conversions/index.md b/src/connections/destinations/catalog/criteo-offline-conversions/index.md index 7ff49f92d8..33d562185b 100644 --- a/src/connections/destinations/catalog/criteo-offline-conversions/index.md +++ b/src/connections/destinations/catalog/criteo-offline-conversions/index.md @@ -2,8 +2,8 @@ title: Criteo Offline Conversions Destination rewrite: true hide-personas-partial: true +id: 5d433ab511dfe7000134faca --- - [Criteo Offline Conversions](https://www.criteo.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) enables offline event tracking so marketers can run Omnichannel Campaigns by leveraging deterministic matching of SKU-level offline sales data with online user profiles. Criteo can predict which store the shopper prefers to visit and deliver personalized recommendations for products that entice them to visit and purchase. The Criteo Offline Conversions Destination and this document are maintained by Criteo. For any issues with the destination, [let the Criteo team know](mailto:support@criteo.com)! diff --git a/src/connections/destinations/catalog/crittercism/index.md b/src/connections/destinations/catalog/crittercism/index.md index e5ace1d5b8..c292c46af7 100644 --- a/src/connections/destinations/catalog/crittercism/index.md +++ b/src/connections/destinations/catalog/crittercism/index.md @@ -1,8 +1,8 @@ --- title: Crittercism Destination redirect_from: '/connections/destinations/catalog/apteligent/' +id: 54521fd525e721e32a72eea3 --- - Our Crittercism destination code is open sourced on GitHub. Feel free to check it out: [iOS](https://github.com/segment-integrations/analytics-ios-integration-crittercism), [Android](https://github.com/segment-integrations/analytics-android-integration-crittercism). ## Getting Started diff --git a/src/connections/destinations/catalog/crowdpower/index.md b/src/connections/destinations/catalog/crowdpower/index.md index 8223cbd6f0..49c8e80e11 100644 --- a/src/connections/destinations/catalog/crowdpower/index.md +++ b/src/connections/destinations/catalog/crowdpower/index.md @@ -2,8 +2,8 @@ title: CrowdPower Destination rewrite: true beta: true +id: 5e59dad99437ab152550ce1f --- - [CrowdPower](https://crowdpower.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a growth marketing platform that enables businesses to track key customer actions and deliver automated tailored communications to drive sales and increase engagement. This destination is maintained by CrowdPower. For any issues with the destination, [contact the CrowdPower Support team](mailto:support@crowdpower.io). diff --git a/src/connections/destinations/catalog/cruncher/index.md b/src/connections/destinations/catalog/cruncher/index.md index f08fba9866..eb23ef61cb 100644 --- a/src/connections/destinations/catalog/cruncher/index.md +++ b/src/connections/destinations/catalog/cruncher/index.md @@ -1,6 +1,7 @@ --- title: Cruncher Destination rewrite: true +id: 5c785483f45dbc00017f0731 --- [Cruncher](https://cruncherlabs.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) provides an end-to-end data crunching platform with a focus on data science and advanced analytics for analysts and business people. It lets you bring all your siloed data sources in one place and empowers you to extract deep insights using a powerful, yet simple interface. diff --git a/src/connections/destinations/catalog/custify/index.md b/src/connections/destinations/catalog/custify/index.md index 1f0f105abd..4bbb333a1b 100644 --- a/src/connections/destinations/catalog/custify/index.md +++ b/src/connections/destinations/catalog/custify/index.md @@ -1,8 +1,8 @@ --- title: Custify Destination rewrite: true +id: 5cf78a8db6bcdf00017208cd --- - [Custify](https://www.custify.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners)'s Customer Success Platform is designed for B2B SaaS businesses and enables them to reduce their churn and increase customer lifetime value. This destination is maintained by Custify. For any issues with the destination, [contact the Custify Support team](mailto:contact@custify.com). diff --git a/src/connections/destinations/catalog/customer-io-actions/index.md b/src/connections/destinations/catalog/customer-io-actions/index.md index 2a75b8e4a9..125ff0a573 100644 --- a/src/connections/destinations/catalog/customer-io-actions/index.md +++ b/src/connections/destinations/catalog/customer-io-actions/index.md @@ -6,6 +6,7 @@ hide-dossier: true redirect_from: - '/connections/destinations/catalog/actions-customerio/' - '/connections/destinations/catalog/actions-customer-io/' +id: 5f7dd78fe27ce7ff2b8bfa37 --- {% include content/plan-grid.md name="actions" %} diff --git a/src/connections/destinations/catalog/customer-io/index.md b/src/connections/destinations/catalog/customer-io/index.md index a83b946bfc..9878183cb0 100644 --- a/src/connections/destinations/catalog/customer-io/index.md +++ b/src/connections/destinations/catalog/customer-io/index.md @@ -4,8 +4,8 @@ rewrite: true redirect_from: "/connections/destinations/catalog/customer.io/" hide-personas-partial: true maintenance: true +id: 54521fd525e721e32a72eea8 --- - [Customer.io](https://customer.io/) helps you send automated email, push, SMS, and webhooks based on your customers' activities in your app or product. It makes conversion tracking, optimization and re-marketing easier. The `analytics.js` Customer.io Destination is open-source. You can browse the code [on GitHub](https://github.com/segmentio/analytics.js-integrations/tree/master/integrations/customerio). > success "" diff --git a/src/connections/destinations/catalog/customersuccessbox/index.md b/src/connections/destinations/catalog/customersuccessbox/index.md index 8647a7bc14..ec28ef5f7b 100644 --- a/src/connections/destinations/catalog/customersuccessbox/index.md +++ b/src/connections/destinations/catalog/customersuccessbox/index.md @@ -1,8 +1,8 @@ --- title: CustomerSuccessBox Destination rewrite: true +id: 5c9ce8b88171a10001f9eefa --- - [CustomerSuccessBox](https://customersuccessbox.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is Outcome Driven Customer Success software, which helps maximize retention, drive product adoption and grow revenue for your B2B SaaS This destination is maintained by CustomerSuccessBox. For any issues with the destination, [contact the CustomerSuccessBox Support team](mailto:support@customersuccessbox.com). diff --git a/src/connections/destinations/catalog/customfit-ai/index.md b/src/connections/destinations/catalog/customfit-ai/index.md index 6b40c71870..754edd5ad9 100644 --- a/src/connections/destinations/catalog/customfit-ai/index.md +++ b/src/connections/destinations/catalog/customfit-ai/index.md @@ -1,6 +1,7 @@ --- title: CustomFit Destination rewrite: true +id: 5cee939ff784ec0001f1cf91 --- [CustomFit.ai](https://customfit.ai/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is an intelligent `App Experience Engine` for B2C apps(Mobile/Web/IoT), with which one can effortlessly craft hyper-personalized app experiences & alternative user journeys to each of their user or segment of users with zero code. Every user is unique, so should be your app. diff --git a/src/connections/destinations/catalog/databrain/index.md b/src/connections/destinations/catalog/databrain/index.md index 45798b4671..f5f2ad1a83 100644 --- a/src/connections/destinations/catalog/databrain/index.md +++ b/src/connections/destinations/catalog/databrain/index.md @@ -2,8 +2,8 @@ title: DataBrain Destination rewrite: true redirect_from: '/connections/destinations/catalog/supervised-ai/' +id: 5e0e30c894764f0b78f89912 --- - [DataBrain](https://usedatabrain.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a tool for product-led companies that helps Sales and Customer Success teams close deals, increase product adoption, and retain customers. DataBrain ingests data from Segment and leverages machine learning techniques to send users automated alerts, and predict churn, conversion, and retention on any event you need to track. This destination is maintained by DataBrain. For any issues with the destination, [contact the DataBrain Support team](mailto:support@usedatabrain.com). diff --git a/src/connections/destinations/catalog/delighted/index.md b/src/connections/destinations/catalog/delighted/index.md index 0927d01bd4..1935c5ebc7 100644 --- a/src/connections/destinations/catalog/delighted/index.md +++ b/src/connections/destinations/catalog/delighted/index.md @@ -1,8 +1,8 @@ --- title: Delighted Destination rewrite: true +id: 58915ccf80412f644ff6295b --- - [Delighted](https://delighted.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is the modern customer feedback solution used by the world's most coveted brands to deliver stellar experiences to their customers. This destination is maintained by Delighted. For any issues with the destination, [contact the Delighted Support team](mailto:hello@delighted.com) diff --git a/src/connections/destinations/catalog/digioh/index.md b/src/connections/destinations/catalog/digioh/index.md index 276e81da67..437f0b7d99 100644 --- a/src/connections/destinations/catalog/digioh/index.md +++ b/src/connections/destinations/catalog/digioh/index.md @@ -1,6 +1,7 @@ --- title: Digioh Destination rewrite: true +id: 5f73b9dae27ce740818bf92d --- [Digioh](https://www.digioh.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) allows you to grow your email lists with personalized forms, landing pages, paywalls and email preference centers. Digioh makes it easy with a drag and drop builder and built-in integrations to your favorite marketing tools. diff --git a/src/connections/destinations/catalog/doubleclick-floodlight/index.md b/src/connections/destinations/catalog/doubleclick-floodlight/index.md index ef832dde37..286d879127 100644 --- a/src/connections/destinations/catalog/doubleclick-floodlight/index.md +++ b/src/connections/destinations/catalog/doubleclick-floodlight/index.md @@ -2,8 +2,8 @@ title: DoubleClick Floodlight Destination strat: google cmode-override: true +id: 57ab9dfc80412f644ff2004c --- - The [DoubleClick Floodlight](https://support.google.com/searchads/answer/7298761?hl=en) destination allows you to make calls directly to Floodlight based on your mapped events. All you have to do is enter your **DoubleClick Advertiser ID** in the Doubleclick Floodlight destinations settings in the Segment App, then map the Segment `track` events to their corresponding Floodlight tags. This destination _requires_ that you send device-specific information such as the `IDFA` or the `advertisingId`. The best way to send events to Doubleclick Floodlight from mobile devices is using [one of the Segment mobile libraries](/docs/connections/sources/catalog/#mobile), because they collect this information automatically. If you use [one of the Segment server source libraries](/docs/connections/sources/catalog/#server) instead, you must manually include the required `advertisingId`. You can also send data from [Analytics.js](/docs/connections/sources/catalog/libraries/website/javascript/) and Segment makes direct HTTP requests to Doubleclick Floodlight from your browser. diff --git a/src/connections/destinations/catalog/dreamdata-io/index.md b/src/connections/destinations/catalog/dreamdata-io/index.md index b888ac7103..a287da19e9 100644 --- a/src/connections/destinations/catalog/dreamdata-io/index.md +++ b/src/connections/destinations/catalog/dreamdata-io/index.md @@ -1,6 +1,7 @@ --- title: Dreamdata IO Destination rewrite: true +id: 5c6ef3322a6fb40001a71bf7 --- [Dreamdata IO](https://dreamdata.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) uses your Segment data to deliver multitouch, per account attribution. This enables B2B companies to understand the impact on revenue of every touch in their customer journey. diff --git a/src/connections/destinations/catalog/drip/index.md b/src/connections/destinations/catalog/drip/index.md index 61ef96aef5..753c603ed1 100644 --- a/src/connections/destinations/catalog/drip/index.md +++ b/src/connections/destinations/catalog/drip/index.md @@ -1,7 +1,7 @@ --- title: Drip Destination +id: 54521fd525e721e32a72eeaa --- - Our Drip destination code is all open-source on GitHub if you want to check it out: [Javascript](https://github.com/segment-integrations/analytics.js-integration-drip),(iOS and Android work using the server destination). ## Getting Started diff --git a/src/connections/destinations/catalog/elevio/index.md b/src/connections/destinations/catalog/elevio/index.md index 40ef6ebcbf..48d38106f8 100644 --- a/src/connections/destinations/catalog/elevio/index.md +++ b/src/connections/destinations/catalog/elevio/index.md @@ -1,8 +1,8 @@ --- title: Elevio Destination rewrite: true +id: 556df6680a20f4e22f0fb3a0 --- - [Elevio](https://elev.io/) is a continuous user education platform that makes your product easier to learn and use. It helps your organization increase user engagement through up-skilling and education while reducing support loads and customer churn. The Elevio Destination is open-source. You can browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-elevio). diff --git a/src/connections/destinations/catalog/eloqua/index.md b/src/connections/destinations/catalog/eloqua/index.md index 234369d62b..b22ca420a8 100644 --- a/src/connections/destinations/catalog/eloqua/index.md +++ b/src/connections/destinations/catalog/eloqua/index.md @@ -1,7 +1,7 @@ --- title: Eloqua Destination +id: 54521fd525e721e32a72eeac --- - ## Page Client-side page-view tracking is achieved using an integration with the [Eloqua diff --git a/src/connections/destinations/catalog/email-aptitude/index.md b/src/connections/destinations/catalog/email-aptitude/index.md index 0cb0334b8d..0fbd256141 100644 --- a/src/connections/destinations/catalog/email-aptitude/index.md +++ b/src/connections/destinations/catalog/email-aptitude/index.md @@ -1,4 +1,5 @@ --- title: 'Email Aptitude Destination' hidden: true ---- \ No newline at end of file +id: 54521fd525e721e32a72eeab +--- diff --git a/src/connections/destinations/catalog/emarsys/index.md b/src/connections/destinations/catalog/emarsys/index.md index 985d537c76..1a6f760449 100644 --- a/src/connections/destinations/catalog/emarsys/index.md +++ b/src/connections/destinations/catalog/emarsys/index.md @@ -1,8 +1,8 @@ --- title: Emarsys Destination rewrite: true +id: 5a8e1add366cd2000115dfe7 --- - [The Emarsys Marketing Platform](https://www.emarsys.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) allows consumer-facing companies of any industry to convert, grow and retain their clients by enabling automated and personalized interactions across the customer lifecycle and across channels and devices. This destination is maintained by Emarsys. For any issues with the destination, [contact the Emarsys Support team](mailto:help@support.emarsys.com). diff --git a/src/connections/destinations/catalog/emma/index.md b/src/connections/destinations/catalog/emma/index.md index 5af8ed39fa..db463fa583 100644 --- a/src/connections/destinations/catalog/emma/index.md +++ b/src/connections/destinations/catalog/emma/index.md @@ -1,8 +1,8 @@ --- title: Emma Destination rewrite: true +id: 5c8bcba020ab84000148897c --- - [EMMA](https://emma.io/en/) helps you track campaigns from your trusted networks, Google Ads campaigns, Facebook and Instagram campaigns, and Twitter campaigns. You can also track user activities in your app, so you can send personalized push notifications and in-app campaigns like banners, start-views etc. This destination is maintained by EMMA. For any issues with the destination, [contact the EMMA Support team](mailto:support@emma.io). diff --git a/src/connections/destinations/catalog/engage-messaging/index.md b/src/connections/destinations/catalog/engage-messaging/index.md index cc9f969cb7..7d6538f68b 100644 --- a/src/connections/destinations/catalog/engage-messaging/index.md +++ b/src/connections/destinations/catalog/engage-messaging/index.md @@ -1,7 +1,7 @@ --- title: Engage Destination +id: 607482568738ee46aaa8404c --- - ## Engage Messaging [Engage Messaging](https://engage.so/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps businesses send personalised messages to customers based on customer traits and actions. diff --git a/src/connections/destinations/catalog/enjoyhq/index.md b/src/connections/destinations/catalog/enjoyhq/index.md index f684fef02b..4430eba796 100644 --- a/src/connections/destinations/catalog/enjoyhq/index.md +++ b/src/connections/destinations/catalog/enjoyhq/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: EnjoyHQ Destination +id: 5fb411aeff3f6d1023f2ae8d --- - [EnjoyHQ](https://getenjoyhq.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps UX and product teams learn from customers faster by streamlining their customer research process. EnjoyHQ makes it easy to centralize, organize and share all their customer insights and user research data in one place. diff --git a/src/connections/destinations/catalog/epica/index.md b/src/connections/destinations/catalog/epica/index.md index 28f4fd27fa..5aa4b54f27 100644 --- a/src/connections/destinations/catalog/epica/index.md +++ b/src/connections/destinations/catalog/epica/index.md @@ -1,8 +1,8 @@ --- title: EPICA Destination rewrite: true +id: 5c6dca8369c83b0001d6b868 --- - [EPICA](https://www.epica.ai?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is the world's first Prediction-as-a-Service platform. Powered by AI, EPICA captures, processes and analyses online data sources to accurately predict customer behavior. EPICA provides predictive analytics for growth marketers, leveraging machine learning to automate audience insights and recommendations. This destination is maintained by EPICA. For any issues with the destination, [contact the Epica Support team](mailto:support@epica.ai). diff --git a/src/connections/destinations/catalog/errorception/index.md b/src/connections/destinations/catalog/errorception/index.md index b561d61fdd..5edbfc8c7b 100644 --- a/src/connections/destinations/catalog/errorception/index.md +++ b/src/connections/destinations/catalog/errorception/index.md @@ -1,7 +1,7 @@ --- title: Errorception Destination +id: 54521fd525e721e32a72eead --- - ## Getting Started When you enable Errorception in the Segment web app, your changes appear in the Segment CDN in about 45 minutes, and then Analytics.js starts asynchronously loading Errorception's `beacon.js` library on to your page. This means you should remove the original Errorception's snippet from your page. diff --git a/src/connections/destinations/catalog/everflow/index.md b/src/connections/destinations/catalog/everflow/index.md index ec516079d0..d746262046 100644 --- a/src/connections/destinations/catalog/everflow/index.md +++ b/src/connections/destinations/catalog/everflow/index.md @@ -1,6 +1,7 @@ --- title: Everflow Destination rewrite: true +id: 5fdce712dc1fbc625ebd13b8 --- Everflow is the smarter Partner Marketing platform for managing all of your performance driving channels: Affiliates, Influencers, Strategic Partners, and Media Buying. Track every partner and channel, analyze performance and engagement by placement, and automate your optimization. diff --git a/src/connections/destinations/catalog/experiments-by-growthhackers/index.md b/src/connections/destinations/catalog/experiments-by-growthhackers/index.md index b221138766..77f11c9c8d 100644 --- a/src/connections/destinations/catalog/experiments-by-growthhackers/index.md +++ b/src/connections/destinations/catalog/experiments-by-growthhackers/index.md @@ -2,6 +2,7 @@ rewrite: true title: Experiments by Growthhackers Destination redirect_from: '/connections/destinations/catalog/northstar-by-growthhackers/' +id: 5cc205876b9a830001432515 --- [Experiments by Growthhackers](http://growthhackers.com/software) provides a project management tool for growth teams, allowing companies to create and prioritize ideas, run experiments and gather data to learn upon! diff --git a/src/connections/destinations/catalog/exponea/index.md b/src/connections/destinations/catalog/exponea/index.md index b98d4d796d..bb6a271217 100644 --- a/src/connections/destinations/catalog/exponea/index.md +++ b/src/connections/destinations/catalog/exponea/index.md @@ -2,8 +2,8 @@ title: Exponea Destination rewrite: true beta: true +id: 5d4d88bbd02041672e51e3ca --- - [Exponea](https://exponea.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a Customer Data & Experience Platform (CDXP) which creates a unified source of customer intelligence in real-time, ready for immediate activation using its own built‑in omnichannel marketing systems (web, email, push, mobile, text messages,etc.) powered by customer-centric analytics and artificial intelligence (product recommendations and predictions). This destination is maintained by Exponea. For any issues with the destination, contact [the Exponea Support team](mailto:support@exponea.com). diff --git a/src/connections/destinations/catalog/extole-platform/index.md b/src/connections/destinations/catalog/extole-platform/index.md index 9e7aebb1f5..18dd0f6ef1 100644 --- a/src/connections/destinations/catalog/extole-platform/index.md +++ b/src/connections/destinations/catalog/extole-platform/index.md @@ -3,9 +3,8 @@ title: Extole Destination rewrite: true beta: true redirect_from: '/connections/destinations/catalog/extole/' +id: 5e79ef31929aef3bdfbc53a5 --- - - Brands use Extole to turn customers into advocates. Our enterprise platform and team of experts create beautiful referral and customer engagement programs, so brands can harness the power of sharing to the benefit of their bottom line. Extole enables marketers to engage thousands of advocates, scaling word-of-mouth to acquire new customers and increase loyalty using their greatest competitive advantage: their customers. diff --git a/src/connections/destinations/catalog/facebook-app-events/index.md b/src/connections/destinations/catalog/facebook-app-events/index.md index a340b980d6..dd46f9f84b 100644 --- a/src/connections/destinations/catalog/facebook-app-events/index.md +++ b/src/connections/destinations/catalog/facebook-app-events/index.md @@ -2,8 +2,8 @@ title: Facebook App Events Destination rewrite: true strat: facebook +id: 56fc7e4680412f644ff12fb9 --- - [Facebook App Events](https://developers.facebook.com/docs/app-events) collects required information from one of Segment's mobile SDKs ([iOS](/docs/connections/sources/catalog/libraries/mobile/ios/) or [Android](/docs/connections/sources/catalog/libraries/mobile/android/)) and sends it from Segment's servers to Facebook App Events servers. This *server-to-server* connection will not work with our server-side libraries. The Facebook App Events Destination is open-source. You can browse the code on GitHub for [iOS](https://github.com/segment-integrations/analytics-ios-integration-facebook-app-events). diff --git a/src/connections/destinations/catalog/facebook-conversions-api/index.md b/src/connections/destinations/catalog/facebook-conversions-api/index.md index 1a45433ab5..53786e5115 100644 --- a/src/connections/destinations/catalog/facebook-conversions-api/index.md +++ b/src/connections/destinations/catalog/facebook-conversions-api/index.md @@ -2,7 +2,7 @@ title: 'Facebook Conversions API Destination' hidden: true beta: true +id: 5c7f23427d1806000175952a --- - diff --git a/src/connections/destinations/catalog/facebook-offline-conversions/index.md b/src/connections/destinations/catalog/facebook-offline-conversions/index.md index fd7ca79e54..a2b1aaee7c 100644 --- a/src/connections/destinations/catalog/facebook-offline-conversions/index.md +++ b/src/connections/destinations/catalog/facebook-offline-conversions/index.md @@ -2,8 +2,8 @@ title: Facebook Offline Conversions Destination rewrite: true strat: facebook +id: 58ae54dc70a3e552b95415f6 --- - [Facebook Offline Conversions](https://www.facebook.com/business/help/1782327938668950?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) enables offline event tracking, so marketers can run campaigns, upload transaction data, and compare in-store transactions. diff --git a/src/connections/destinations/catalog/facebook-pixel/index.md b/src/connections/destinations/catalog/facebook-pixel/index.md index 885571b6fb..44bc016c83 100644 --- a/src/connections/destinations/catalog/facebook-pixel/index.md +++ b/src/connections/destinations/catalog/facebook-pixel/index.md @@ -2,8 +2,8 @@ title: Facebook Pixel Destination rewrite: true strat: facebook +id: 5661eb58e954a874ca44cc07 --- - [Facebook Pixel](https://developers.facebook.com/docs/facebook-pixel) lets you measure and optimize the performance of your Facebook Ads. It makes conversion tracking, optimization and remarketing easier than ever. The Facebook Pixel Destination is open-source. You can browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-facebook-pixel). > warning "" diff --git a/src/connections/destinations/catalog/factorsai/index.md b/src/connections/destinations/catalog/factorsai/index.md index c84c997e03..69fdaa19ed 100644 --- a/src/connections/destinations/catalog/factorsai/index.md +++ b/src/connections/destinations/catalog/factorsai/index.md @@ -1,6 +1,7 @@ --- title: FactorsAI Destination rewrite: true +id: 5d1060c40d357d000181e92c --- [FactorsAI](https://www.factors.ai/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) provides advanced and intuitive analytics for marketers and product managers, to help drive growth. With FactorsAI you get immediate insights to optimize marketing campaigns, improve conversions and understand user behaviours that drive feature adoption and retention. diff --git a/src/connections/destinations/catalog/firebase/index.md b/src/connections/destinations/catalog/firebase/index.md index a639ed8d83..b2ece50b66 100644 --- a/src/connections/destinations/catalog/firebase/index.md +++ b/src/connections/destinations/catalog/firebase/index.md @@ -1,8 +1,8 @@ --- title: Firebase Destination strat: google +id: 579a568e80412f644ff19cf7 --- - Firebase is Google's platform for mobile apps. The Segment Firebase destination requires that you bundle the Firebase SDK with your project. The Segment-wrapped destination code then runs on the user's device, and sends its tracking calls to the Firebase API endpoints, and a copy to Segment for archiving. diff --git a/src/connections/destinations/catalog/flurry/index.md b/src/connections/destinations/catalog/flurry/index.md index 2d0b0a5e39..32a1ee1e56 100644 --- a/src/connections/destinations/catalog/flurry/index.md +++ b/src/connections/destinations/catalog/flurry/index.md @@ -1,8 +1,8 @@ --- title: Flurry Destination rewrite: true +id: 54521fd625e721e32a72eeb1 --- - [Flurry](https://developer.yahoo.com/flurry/docs/) provides you with the tools and resources you need to gain a deep level of understanding about your users' behavior in your apps. Our Flurry destination code is open sourced on GitHub. Feel free to check it out: [iOS](https://github.com/segment-integrations/analytics-ios-integration-flurry), [Android](https://github.com/segment-integrations/analytics-android-integration-flurry). diff --git a/src/connections/destinations/catalog/foxmetrics/index.md b/src/connections/destinations/catalog/foxmetrics/index.md index e4f93e6f8f..3062a9e9d6 100644 --- a/src/connections/destinations/catalog/foxmetrics/index.md +++ b/src/connections/destinations/catalog/foxmetrics/index.md @@ -1,8 +1,8 @@ --- title: FoxMetrics Destination rewrite: true +id: 54521fd625e721e32a72eeb2 --- - [FoxMetrics](https://www.foxmetrics.com/) is a personalization platform that allows users to collect & analyze customer actions through computers, mobile, and web applications. The `analytics.js` FoxMetrics destination is open-source. You can browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-foxmetrics). ## Getting Started diff --git a/src/connections/destinations/catalog/freshmarketer/index.md b/src/connections/destinations/catalog/freshmarketer/index.md index 879869b363..85c1e88228 100644 --- a/src/connections/destinations/catalog/freshmarketer/index.md +++ b/src/connections/destinations/catalog/freshmarketer/index.md @@ -1,8 +1,8 @@ --- title: Freshmarketer Destination rewrite: true +id: 5c823fb8af6c8c00015636b6 --- - Segment makes it easy to send your data to [Freshmarketer](https://www.freshmarketer.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) (and lots of other destinations). Once you collect your data using Segment's [open source libraries](/docs/connections/sources/catalog/), Segment translates and routes your data to Freshmarketer in the format it can use. This destination is maintained by Freshmarketer. For any issues with the destination, [contact the Freshmarketer Support team](mailto:support@freshmarketer.com). diff --git a/src/connections/destinations/catalog/freshsales/index.md b/src/connections/destinations/catalog/freshsales/index.md index 901c95bc87..3fb87bfd35 100644 --- a/src/connections/destinations/catalog/freshsales/index.md +++ b/src/connections/destinations/catalog/freshsales/index.md @@ -1,5 +1,6 @@ --- title: Freshsales Destination +id: 56fd5efd80412f644ff12fbd --- This destination is maintained by [Freshsales](https://www.freshworks.com/freshsales-crm/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners). For any issues with the destination contact us at support@freshsales.io. diff --git a/src/connections/destinations/catalog/friendbuy/index.md b/src/connections/destinations/catalog/friendbuy/index.md index 35c82db6d1..2ec3c6740a 100644 --- a/src/connections/destinations/catalog/friendbuy/index.md +++ b/src/connections/destinations/catalog/friendbuy/index.md @@ -1,6 +1,7 @@ --- title: Friendbuy Destination cmode-override: true +id: 59ce9468cf711e00014a9c12 --- Friendbuy is a referral marketing and campaign optimization platform. diff --git a/src/connections/destinations/catalog/fullstory/index.md b/src/connections/destinations/catalog/fullstory/index.md index c9dc4c15c4..b08c976021 100644 --- a/src/connections/destinations/catalog/fullstory/index.md +++ b/src/connections/destinations/catalog/fullstory/index.md @@ -2,6 +2,7 @@ title: FullStory Destination rewrite: true maintenance: true +id: 54521fd625e721e32a72eeb8 --- [FullStory](https://www.fullstory.com/){:target="_blank"} lets product and support teams easily understand everything about the customer experience. The Segment integration for FullStory helps accurately identify your customers within the FullStory dashboard. diff --git a/src/connections/destinations/catalog/funnelenvy/index.md b/src/connections/destinations/catalog/funnelenvy/index.md index 33f6c73485..08a418b03c 100644 --- a/src/connections/destinations/catalog/funnelenvy/index.md +++ b/src/connections/destinations/catalog/funnelenvy/index.md @@ -1,8 +1,8 @@ --- title: FunnelEnvy Destination rewrite: true +id: 5d3752aec1c95d00012c80aa --- - [FunnelEnvy](https://www.funnelenvy.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps marketers optimize revenue by delivering personalized experiences and offers for every customer across their unique journey. This destination is maintained by FunnelEnvy. For any issues with the destination, [contact the FunnelEnvy Support team](mailto:support@funnelenvy.com). diff --git a/src/connections/destinations/catalog/funnelfox/index.md b/src/connections/destinations/catalog/funnelfox/index.md index 1e78d82c59..cc7210d627 100644 --- a/src/connections/destinations/catalog/funnelfox/index.md +++ b/src/connections/destinations/catalog/funnelfox/index.md @@ -1,6 +1,7 @@ --- title: FunnelFox Destination rewrite: true +id: 5d10e0d0d3831900017af2cd --- [FunnelFox](https://www.funnelfox.com/){:target="_blank"} allows you to sort your sales operations in just a few clicks. Integrate your sales tools to eliminate data silos, get accurate CRM data to make the right decisions, and know when opportunities require attention. diff --git a/src/connections/destinations/catalog/gainsight-px/index.md b/src/connections/destinations/catalog/gainsight-px/index.md index fd7eac565f..f38c939204 100644 --- a/src/connections/destinations/catalog/gainsight-px/index.md +++ b/src/connections/destinations/catalog/gainsight-px/index.md @@ -2,8 +2,8 @@ title: 'Gainsight PX Destination' rewrite: true redirect_from: '/connections/destinations/catalog/aptrinsic/' +id: 59d6b77928a96e00019c6ded --- - [Gainsight PX](https://www.gainsight.com/product-experience/) (formerly known as Aptrinsic) provides a personalized product experience platform to help companies acquire, retain, and grow customers by creating real-time, personalized engagements driven by product usage data. With Gainsight PX, companies can implement an effective product-led go-to-market strategy that will increase product adoption and customer lifetime value. Our Gainsight PX destination code is open sourced on GitHub, feel free to check it out: [Gainsight PX integration code](https://github.com/segment-integrations/analytics.js-integration-aptrinsic). diff --git a/src/connections/destinations/catalog/gainsight/index.md b/src/connections/destinations/catalog/gainsight/index.md index e9c8bde96f..8c40bb8d0c 100644 --- a/src/connections/destinations/catalog/gainsight/index.md +++ b/src/connections/destinations/catalog/gainsight/index.md @@ -1,8 +1,8 @@ --- title: Gainsight Destination rewrite: true +id: 54521fd625e721e32a72eeb5 --- - [Gainsight](https://www.gainsight.com/) is a customer success software that empowers companies to increase revenue, decrease customer churn, and drive advocacy. Gainsight for Analytics Cloud is the first and only solution that runs predictive data science natively using Salesforce sales, service, marketing, and community data. diff --git a/src/connections/destinations/catalog/gameball/index.md b/src/connections/destinations/catalog/gameball/index.md index 86a0356261..1e08e0eabf 100644 --- a/src/connections/destinations/catalog/gameball/index.md +++ b/src/connections/destinations/catalog/gameball/index.md @@ -1,8 +1,8 @@ --- title: Gameball Destination hide-cmodes: true +id: 5df6778be7d93d3a5b742b1a --- - [Gameball](https://gameball.co/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a gamified loyalty platform, offering growth, retention, and referral-management programs; and providing self-serve predictive analytics for growth marketers using machine learning to automate audience insights and recommendations. This destination is maintained by Gameball. For any issues with the destination, [contact Gameball support](mailto:support@gmabell.co). diff --git a/src/connections/destinations/catalog/gauges/index.md b/src/connections/destinations/catalog/gauges/index.md index b79be411d7..84d00673af 100644 --- a/src/connections/destinations/catalog/gauges/index.md +++ b/src/connections/destinations/catalog/gauges/index.md @@ -1,7 +1,7 @@ --- title: Gauges Destination +id: 54521fd625e721e32a72eeb7 --- - ## Getting Started When you enable Gauges in the Segment web app, your changes appear in the Segment CDN in about 45 minutes, and then Analytics.js starts asynchronously loading Gauges' `track.js` onto your page. diff --git a/src/connections/destinations/catalog/gist/index.md b/src/connections/destinations/catalog/gist/index.md index d544b79f2b..1789789ea5 100644 --- a/src/connections/destinations/catalog/gist/index.md +++ b/src/connections/destinations/catalog/gist/index.md @@ -1,6 +1,7 @@ --- title: Gist Destination rewrite: true +id: 5ec499003e60e9200f681768 --- [Gist](https://getgist.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a marketing and support platform that helps companies attract visitors, convert leads, and support customers. diff --git a/src/connections/destinations/catalog/goedle-io/index.md b/src/connections/destinations/catalog/goedle-io/index.md index 6140477b6f..1b6d1bb19a 100644 --- a/src/connections/destinations/catalog/goedle-io/index.md +++ b/src/connections/destinations/catalog/goedle-io/index.md @@ -1,8 +1,8 @@ --- title: Goedle.io Destination rewrite: true +id: 5653a808e954a874ca44cbe6 --- - [goedle.io](https://goedle.io/) uses powerful AI and Machine Learning algorithms to predict user behavior. The more data you provide, the better its recommendations will be. This destination is maintained by Goedle. For any issues with the destination, [contact the Goedle Support team](mailto:support@goedle.io). diff --git a/src/connections/destinations/catalog/google-ads-classic/index.md b/src/connections/destinations/catalog/google-ads-classic/index.md index dcc40a0942..041601d5ce 100644 --- a/src/connections/destinations/catalog/google-ads-classic/index.md +++ b/src/connections/destinations/catalog/google-ads-classic/index.md @@ -3,9 +3,9 @@ title: Google Ads (Classic) Destination redirect_from: '/connections/destinations/catalog/adwords/' strat: google hide-personas-partial: true -cmode-override: true +cmode-override: true +id: 54521fd525e721e32a72ee92 --- - > info "" > The Google Ads (Classic) destination code is available on GitHub [here](https://github.com/segment-integrations/analytics.js-integration-adwords){:target="_blank"}. diff --git a/src/connections/destinations/catalog/google-ads-gtag/index.md b/src/connections/destinations/catalog/google-ads-gtag/index.md index e65d555ba2..c512e116eb 100644 --- a/src/connections/destinations/catalog/google-ads-gtag/index.md +++ b/src/connections/destinations/catalog/google-ads-gtag/index.md @@ -4,8 +4,8 @@ beta: true redirect_from: '/connections/destinations/catalog/google-adwords-new/' strat: google name-override: true +id: 5a03bfe73156760001ab34ec --- - ## Before you begin If you're using the [new Google Ads (Gtag) experience](https://support.google.com/adwords/answer/6095821?hl=en&ref_topic=3165803), you can enable the **Google Ads (Gtag)** Destination (previously called "Google Adwords New") in the Segment catalog. The new Google Ads uses a Global Site Tag (Gtag) and event snippets. diff --git a/src/connections/destinations/catalog/google-analytics/index.md b/src/connections/destinations/catalog/google-analytics/index.md index badbf71610..8afaf5c856 100644 --- a/src/connections/destinations/catalog/google-analytics/index.md +++ b/src/connections/destinations/catalog/google-analytics/index.md @@ -4,8 +4,8 @@ strat: google hide-dossier: false redirect_from: - '/connections/destinations/catalog/google-universal-analytics' +id: 54521fd725e721e32a72eebb --- - > warning "Migrate mobile implementations to Firebase" > Google ended support for Google Analytics classic on iOS and Android mobile apps on October 31st 2019. To continue measuring and optimizing user engagement in your mobile apps, [migrate your implementation to use the Firebase SDKs](migrating). If you are using Google Analytics 360 you do not need to migrate. diff --git a/src/connections/destinations/catalog/google-cloud-function/index.md b/src/connections/destinations/catalog/google-cloud-function/index.md index 2a2511e363..685392e5ac 100644 --- a/src/connections/destinations/catalog/google-cloud-function/index.md +++ b/src/connections/destinations/catalog/google-cloud-function/index.md @@ -3,8 +3,8 @@ title: Google Cloud Function Destination hide-cmodes: true beta: true strat: google +id: 5cbe24b1d07261000146ab55 --- - Segment makes it easy to send your data to Google Cloud Function (and lots of other destinations). Once you collect your data using Segment's [open source libraries](/docs/connections/sources/catalog/), Segment translates and routes your data to Google Cloud Function in a format it can use. [Google Cloud Function](https://cloud.google.com/functions) is a lightweight compute solution for developers to create single-purpose, stand-alone functions that respond to Cloud events without the need to manage a server or runtime environment. diff --git a/src/connections/destinations/catalog/google-cloud-pubsub/index.md b/src/connections/destinations/catalog/google-cloud-pubsub/index.md index 140007094a..15f518c311 100644 --- a/src/connections/destinations/catalog/google-cloud-pubsub/index.md +++ b/src/connections/destinations/catalog/google-cloud-pubsub/index.md @@ -1,9 +1,8 @@ --- title: Google Cloud Pub/Sub Destination strat: google +id: 5a25e415229c250001a0a402 --- - - When you enable Google Cloud Pub/Sub in the Segment app, Segment starts sending the events you specify to Pub/Sub topics of your choice. The Segment Google Cloud Pub/Sub destination supports all of the Segment methods, and sends data from [any of the Segment libraries](/docs/connections/sources/catalog/). ## Authentication diff --git a/src/connections/destinations/catalog/google-tag-manager/index.md b/src/connections/destinations/catalog/google-tag-manager/index.md index 9340894771..f651e6bf04 100644 --- a/src/connections/destinations/catalog/google-tag-manager/index.md +++ b/src/connections/destinations/catalog/google-tag-manager/index.md @@ -2,8 +2,8 @@ title: Google Tag Manager Destination hide-cmodes: true strat: google +id: 54521fd625e721e32a72eeb9 --- - [Google Tag Manager](https://support.google.com/tagmanager) (GTM) is a tag management system that allows you to quickly and easily update tags and code snippets on your website or mobile apps. Once you add the Tag Manager snippet to your website or mobile app, you can configure tags using a web-based user interface without having to alter and deploy additional code. This reduces errors and frees you from having to involve a developer whenever you need to make changes. The Google Tag Manager Destination is open-source. You can browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-google-tag-manager). diff --git a/src/connections/destinations/catalog/gosquared/index.md b/src/connections/destinations/catalog/gosquared/index.md index 9acde584ac..cd19ed5f8a 100644 --- a/src/connections/destinations/catalog/gosquared/index.md +++ b/src/connections/destinations/catalog/gosquared/index.md @@ -1,7 +1,7 @@ --- title: GoSquared Destination +id: 54521fd625e721e32a72eeba --- - ## Getting Started When you enable GoSquared in the Segment web app, your changes appear in the Segment CDN in about 45 minutes, and then Analytics.js starts asynchronously loading GoSquared's Tracker onto your page. diff --git a/src/connections/destinations/catalog/graphjson/index.md b/src/connections/destinations/catalog/graphjson/index.md index 2286821c9d..ad4e79f0a4 100644 --- a/src/connections/destinations/catalog/graphjson/index.md +++ b/src/connections/destinations/catalog/graphjson/index.md @@ -2,6 +2,7 @@ rewrite: true title: 'GraphJSON Destination' beta: true +id: 61e8726c123c1a81273d00e4 --- [GraphJSON](https://www.graphjson.com/guides/segment){:target="_blank"} provides self-serve analytics to better help you understand your business. diff --git a/src/connections/destinations/catalog/hasoffers/index.md b/src/connections/destinations/catalog/hasoffers/index.md index d68fea37d9..7ea92d4e48 100644 --- a/src/connections/destinations/catalog/hasoffers/index.md +++ b/src/connections/destinations/catalog/hasoffers/index.md @@ -1,4 +1,5 @@ --- title: 'HasOffers Destination' hidden: true ---- \ No newline at end of file +id: 55d37a3f0a20f4e22f0fb3ea +--- diff --git a/src/connections/destinations/catalog/hawkei/index.md b/src/connections/destinations/catalog/hawkei/index.md index b47c8bc5a5..5edb286bac 100644 --- a/src/connections/destinations/catalog/hawkei/index.md +++ b/src/connections/destinations/catalog/hawkei/index.md @@ -2,8 +2,8 @@ rewrite: true title: Hawkei Destination hide-personas-partial: true +id: 5d73347d0bbdf3a5abebca15 --- - [Hawkei](https://hawkei.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) provides real-time accurate error detection for your key user paths and product features. Pinpoint the root cause of an issue easily with all the meta data delivered straight to your inbox or slack channel. This destination is maintained by Hawkei. For any issues with the destination, [contact the Hawkei Support team](mailto:support@hawkei.io). diff --git a/src/connections/destinations/catalog/headsup-ai/index.md b/src/connections/destinations/catalog/headsup-ai/index.md index c7418a6c51..bfa6dd1e89 100644 --- a/src/connections/destinations/catalog/headsup-ai/index.md +++ b/src/connections/destinations/catalog/headsup-ai/index.md @@ -1,8 +1,8 @@ --- title: HeadsUp AI Destination rewrite: true +id: 60900f0a60033befef038889 --- - [HeadsUp AI](https://headsup.ai?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) allows customers to build metrics on top of their existing Segment analytics to better understand customer behavior and gauge health scores. This destination is maintained by HeadsUp. For any issues with the destination, [contact the HeadsUp AI Support team](mailto:administration@headsup.ai). diff --git a/src/connections/destinations/catalog/heap/index.md b/src/connections/destinations/catalog/heap/index.md index bffefa31d7..12d7c5746e 100644 --- a/src/connections/destinations/catalog/heap/index.md +++ b/src/connections/destinations/catalog/heap/index.md @@ -1,8 +1,8 @@ --- title: Heap Destination rewrite: true +id: 54521fd725e721e32a72eebd --- - [Heap](https://heapanalytics.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) automatically captures every user interaction with no extra code. This includes clicks, taps, gestures, form submissions, page views, and more. The Heap Destination is open-source. You can browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-heap). ## Getting Started diff --git a/src/connections/destinations/catalog/hello-bar/index.md b/src/connections/destinations/catalog/hello-bar/index.md index 36d39a98c9..514360eff2 100644 --- a/src/connections/destinations/catalog/hello-bar/index.md +++ b/src/connections/destinations/catalog/hello-bar/index.md @@ -1,4 +1,5 @@ --- title: 'Hello Bar Destination' hidden: true ---- \ No newline at end of file +id: 54521fd725e721e32a72eebc +--- diff --git a/src/connections/destinations/catalog/help-scout/index.md b/src/connections/destinations/catalog/help-scout/index.md index d392f17e27..e7d8c15c15 100644 --- a/src/connections/destinations/catalog/help-scout/index.md +++ b/src/connections/destinations/catalog/help-scout/index.md @@ -2,8 +2,8 @@ title: Help Scout Destination rewrite: true hide-boilerplate: true +id: 54521fd725e721e32a72eebf --- - [Help Scout](https://www.helpscout.net/) is a help desk software company which provides an email-based customer support platform, knowledge base tool, and an embeddable search/contact widget for customer service professionals. ## Getting Started diff --git a/src/connections/destinations/catalog/hittail/index.md b/src/connections/destinations/catalog/hittail/index.md index f7b16e5ff2..e4e7127e00 100644 --- a/src/connections/destinations/catalog/hittail/index.md +++ b/src/connections/destinations/catalog/hittail/index.md @@ -1,7 +1,7 @@ --- title: HitTail Destination +id: 54521fd725e721e32a72eebe --- - ## Getting Started When you enable HitTail in the Segment web app, your changes appear in the Segment CDN in about 45 minutes, and then Analytics.js starts asynchronously loading `hittail.js` onto your page. This means you should remove HitTail's snippet from your page. diff --git a/src/connections/destinations/catalog/hotjar/index.md b/src/connections/destinations/catalog/hotjar/index.md index 4b8e72f995..9a7c835e42 100644 --- a/src/connections/destinations/catalog/hotjar/index.md +++ b/src/connections/destinations/catalog/hotjar/index.md @@ -1,8 +1,8 @@ --- title: Hotjar Destination rewrite: true +id: 5913371070a3e552b9561a4e --- - [Hotjar](https://help.hotjar.com/hc/en-us) is the fast & visual way to understand your users. It offers a full set of user experience tools: heatmaps, session recordings, forms reporting, funnels, and feedback tools, giving you everything your team needs to uncover user insights and make the right changes. The Segment Hotjar Destination allows you to both easily install Hotjar on your pages, and send [User Attributes](https://help.hotjar.com/hc/en-us/articles/360038394053-How-to-Setup-User-Attributes-in-4-Steps) information over Hotjar’s [Identify API](https://help.hotjar.com/hc/en-us/articles/360033640653) using the Segment Identify Spec. As of February 3rd, 2020, this allows you to: diff --git a/src/connections/destinations/catalog/houseware/index.md b/src/connections/destinations/catalog/houseware/index.md index 83ab9209c1..e3c839f467 100644 --- a/src/connections/destinations/catalog/houseware/index.md +++ b/src/connections/destinations/catalog/houseware/index.md @@ -2,8 +2,8 @@ title: Houseware Destination rewrite: true beta: true +id: 60a40b2d20a31975d7b14052 --- - [Houseware](https://houseware.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank"} helps teams to generate actionable sales/conversion touchpoints in the user journeys to clock more revenue. This destination is maintained by Houseware. For any issues with the destination, [contact the Houseware Support team](mailto:support@houseware.io). diff --git a/src/connections/destinations/catalog/hubspot/index.md b/src/connections/destinations/catalog/hubspot/index.md index a3e04da2a1..430f3e46c5 100644 --- a/src/connections/destinations/catalog/hubspot/index.md +++ b/src/connections/destinations/catalog/hubspot/index.md @@ -2,9 +2,9 @@ rewrite: true title: HubSpot Destination hide-personas-partial: true -cmode-override: true +cmode-override: true +id: 54521fd725e721e32a72eec1 --- - [HubSpot](https://www.hubspot.com/) is an inbound marketing and sales platform that helps companies attract visitors, convert leads, and close customers. The `analytics.js` HubSpot Destination is open-source. You can browse the code [on GitHub](https://github.com/segmentio/analytics.js-integrations/tree/master/integrations/hubspot). > warning "" diff --git a/src/connections/destinations/catalog/hull/index.md b/src/connections/destinations/catalog/hull/index.md index 0c367be005..7f2bba8711 100644 --- a/src/connections/destinations/catalog/hull/index.md +++ b/src/connections/destinations/catalog/hull/index.md @@ -1,7 +1,7 @@ --- title: Hull Destination +id: 5728ed9c80412f644ff132d9 --- - Hull is the one place to collect, transform, enrich, filter, search and segment customer data in all your tools. It helps you creates a single actionable profile and uniform segments that sync to all your tools and make cross-channel, end-to-end personalization easy. diff --git a/src/connections/destinations/catalog/hydra/index.md b/src/connections/destinations/catalog/hydra/index.md index a97ac8ee9b..dbad5a096c 100644 --- a/src/connections/destinations/catalog/hydra/index.md +++ b/src/connections/destinations/catalog/hydra/index.md @@ -1,6 +1,7 @@ --- title: Hydra Destination rewrite: true +id: 5cd30f824e267500018a1063 --- [Hydra](https://hydra.ai/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps marketing, sales operations and customer success teams implement holistic predictive analytics tailored to their own business without writing a single line of code. Hydra is capable of scanning a wide range of sources such as product usage, user demographic data, firmographic data, chat conversations, help desk tickets, emails and marketing engagement to discover signals and make predictions. diff --git a/src/connections/destinations/catalog/ibm-ubx/index.md b/src/connections/destinations/catalog/ibm-ubx/index.md index d2853792c7..53f53cc3bb 100644 --- a/src/connections/destinations/catalog/ibm-ubx/index.md +++ b/src/connections/destinations/catalog/ibm-ubx/index.md @@ -3,8 +3,8 @@ title: IBM Universal Behavior Exchange Destination rewrite: true beta: true hidden: true +id: 5a3ab305a1e66e00017185f9 --- - [IBM's Universal Behavior Exchange (UBX)](https://www.ibm.com/support/knowledgecenter/en/SS9JVY/UBX/kc_welcome_UBX.html) is an API that allows users to share customer interactions, behaviors, and target audiences among IBM solutions and applications - including the *Watson diff --git a/src/connections/destinations/catalog/impact-partnership-cloud/index.md b/src/connections/destinations/catalog/impact-partnership-cloud/index.md index 6906cef46b..d837603a7e 100644 --- a/src/connections/destinations/catalog/impact-partnership-cloud/index.md +++ b/src/connections/destinations/catalog/impact-partnership-cloud/index.md @@ -1,8 +1,8 @@ --- title: Impact Partnership Cloud Destination rewrite: true +id: 5ed96e0b97e7ba0c0346cc04 --- - [Impact Partnership Cloud](https://impact.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) lets you expand your program and scale every type of partnership by managing the partnership lifecycle - from discovery, contracting and payments through tracking and optimization. This destination is maintained by Impact. For any issues with the destination, contact the [Impact Partnership Cloud team](https://app.impact.com/) or check out [Impact Partnership Cloud's documentation](https://app.impact.com/secure/agency/support/customer-support-portal-flow.ihtml?execution=e3s1). diff --git a/src/connections/destinations/catalog/improvely/index.md b/src/connections/destinations/catalog/improvely/index.md index dcfb35158f..2e2ccafc94 100644 --- a/src/connections/destinations/catalog/improvely/index.md +++ b/src/connections/destinations/catalog/improvely/index.md @@ -1,4 +1,5 @@ --- title: 'Improvely Destination' hidden: true ---- \ No newline at end of file +id: 54521fd725e721e32a72eec0 +--- diff --git a/src/connections/destinations/catalog/indicative/index.md b/src/connections/destinations/catalog/indicative/index.md index d764e8104c..3edd937202 100644 --- a/src/connections/destinations/catalog/indicative/index.md +++ b/src/connections/destinations/catalog/indicative/index.md @@ -1,8 +1,8 @@ --- title: Indicative Destination rewrite: true +id: 54521fd725e721e32a72eec4 --- - [Indicative](https://app.indicative.com/?utm_source=segment&utm_medium=partners&utm_campaign=setupguide#/login/register) is a behavioral analytics platform designed to help Marketing and Product teams optimize user engagement, conversion, and retention. ## Getting Started diff --git a/src/connections/destinations/catalog/inkit/index.md b/src/connections/destinations/catalog/inkit/index.md index 4af3b0927f..aeeb9fc053 100644 --- a/src/connections/destinations/catalog/inkit/index.md +++ b/src/connections/destinations/catalog/inkit/index.md @@ -1,8 +1,8 @@ --- title: Inkit Destination rewrite: true +id: 5f0746ced1c79b49ddee49fd --- - [Inkit](https://inkit.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) connects to hundreds of printers with complete visibility. Instantly use global print infrastructure with Inkit's developer friendly APIs, dashboards, and reporting. Connect, track, and manage critical business communications faster than ever before. The Inkit Destination is in beta, which indicates ongoing development. To join the Inkit beta program, or if you have any feedback to help improve the Inkit Destination and its documentation, [contact the Inkit support team](mailto:support@inkit.com). diff --git a/src/connections/destinations/catalog/insider/index.md b/src/connections/destinations/catalog/insider/index.md index 31c1c7cd94..f97953c331 100644 --- a/src/connections/destinations/catalog/insider/index.md +++ b/src/connections/destinations/catalog/insider/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Insider Destination +id: 5f2cf019edbedc752d668f69 --- - [Insider](https://useinsider.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) Growth Management Platform (GMP) helps digital marketers drive growth across the funnel. Insider GMP helps marketers deliver personalized journeys across the web, mobile web, mobile apps, messaging, email, and ad channels using the unified data. This destination is maintained by Insider. For any issues with the destination, [contact the Insider Support team](mailto:pst@useinsider.com). diff --git a/src/connections/destinations/catalog/inspectlet/index.md b/src/connections/destinations/catalog/inspectlet/index.md index 5056c57183..fe9b2b7955 100644 --- a/src/connections/destinations/catalog/inspectlet/index.md +++ b/src/connections/destinations/catalog/inspectlet/index.md @@ -1,8 +1,8 @@ --- title: Inspectlet Destination rewrite: true +id: 54521fd725e721e32a72eec3 --- - [Inspectlet](https://www.inspectlet.com/) lets you analyze user behavior instantly with Eye Tracking Heatmaps, Screen Capture (record and playback actual visitor sessions), and User-Interaction Analytics. The Inspectlet Destination is open-source. You can browse the code on [GitHub](https://github.com/segment-integrations/analytics.js-integration-inspectlet). ## Getting Started diff --git a/src/connections/destinations/catalog/intercom/index.md b/src/connections/destinations/catalog/intercom/index.md index 29dbf7b565..4a1d09efa2 100644 --- a/src/connections/destinations/catalog/intercom/index.md +++ b/src/connections/destinations/catalog/intercom/index.md @@ -3,8 +3,8 @@ title: Intercom Destination hide-cmodes: true hide-personas-partial: true cmode-override: true +id: 54521fd725e721e32a72eec6 --- - [Intercom](https://www.intercom.com/) makes customer messaging apps for sales, marketing, and support, connected on one platform. The Intercom Destination is open-source. You can browse the code for [analytics.js](https://github.com/segment-integrations/analytics.js-integration-intercom), [iOS](https://github.com/segment-integrations/analytics-ios-integration-intercom) and [Android](https://github.com/segment-integrations/analytics-android-integration-intercom) on GitHub. ## Getting Started diff --git a/src/connections/destinations/catalog/iron-io/index.md b/src/connections/destinations/catalog/iron-io/index.md index 42227b8fcf..7fc1dc45c8 100644 --- a/src/connections/destinations/catalog/iron-io/index.md +++ b/src/connections/destinations/catalog/iron-io/index.md @@ -1,7 +1,7 @@ --- title: Iron.io Destination +id: 54521fd725e721e32a72eec5 --- - ## Getting Started When you enable Iron.io in Segment, we'll start sending data to an IronMQ instance with data for your account. Currently, Iron.io supports all of the Segment methods, and will send data from any one of our libraries. diff --git a/src/connections/destinations/catalog/iterable/index.md b/src/connections/destinations/catalog/iterable/index.md index bdf4dd7384..cc7f0a8c5e 100644 --- a/src/connections/destinations/catalog/iterable/index.md +++ b/src/connections/destinations/catalog/iterable/index.md @@ -1,9 +1,9 @@ --- title: Iterable Destination hide-personas-partial: true -cmode-override: true +cmode-override: true +id: 54521fd925e721e32a72eecc --- - When you enable the Iterable destination from the Segment app, your data starts flowing into Iterable, where it can trigger workflows and make data available for analytics. You can find or generate your Iterable API key by going to Integrations → API keys inside the Iterable app. {% include content/plan-grid.md name="actions" %} diff --git a/src/connections/destinations/catalog/startdeliver/index.md b/src/connections/destinations/catalog/startdeliver/index.md index 87af0b419a..cc732bde46 100644 --- a/src/connections/destinations/catalog/startdeliver/index.md +++ b/src/connections/destinations/catalog/startdeliver/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Startdeliver Destination +id: 5fa3ce52d18ccdfb384b13f7 --- - [Startdeliver](https://startdeliver.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) connects data from a variety of sources to provide a customer view optimized to Customer Success Managers. Startdeliver maintains this destination. For any issues with the destination, [contact their support team](mailto:support@startdeliver.com). diff --git a/src/connections/destinations/catalog/statsig/index.md b/src/connections/destinations/catalog/statsig/index.md index 93e4353aee..ce63f32e76 100644 --- a/src/connections/destinations/catalog/statsig/index.md +++ b/src/connections/destinations/catalog/statsig/index.md @@ -1,7 +1,7 @@ --- title: Statsig Destination +id: 613ba8c0114797213a8eff94 --- - [Statsig](https://www.statsig.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps companies safely A/B test features in production before rolling them out, avoiding product debates and costly mistakes when shipping out new features. Statsig automates the grunt work so that A/B tests are always running automatically and you always know how your features are performing. This destination is maintained by Statsig. For any issues with the destination, [contact the Statsig Support team](mailto:support@statsig.com). diff --git a/src/connections/destinations/catalog/stitch-data/index.md b/src/connections/destinations/catalog/stitch-data/index.md index 8c275ceff7..adaf2177bc 100644 --- a/src/connections/destinations/catalog/stitch-data/index.md +++ b/src/connections/destinations/catalog/stitch-data/index.md @@ -1,4 +1,5 @@ --- title: 'Stitch Data Destination' hidden: true ---- \ No newline at end of file +id: 5851bee480412f644ff56150 +--- diff --git a/src/connections/destinations/catalog/stonly/index.md b/src/connections/destinations/catalog/stonly/index.md index 79620c882e..5e5777657e 100644 --- a/src/connections/destinations/catalog/stonly/index.md +++ b/src/connections/destinations/catalog/stonly/index.md @@ -1,8 +1,8 @@ --- title: Stonly Destination rewrite: true +id: 5f354f1a928763feb8caf724 --- - [Stonly](https://stonly.com) helps make customers more successful and employees more productive by letting you easily create interactive guides and put them inside and around your website or app – without having to code anything. This destination is maintained by Stonly. For any issues with the destination, [contact their support team](mailto:support@stonly.com). diff --git a/src/connections/destinations/catalog/stories/index.md b/src/connections/destinations/catalog/stories/index.md index 12decfd852..9cc519f114 100644 --- a/src/connections/destinations/catalog/stories/index.md +++ b/src/connections/destinations/catalog/stories/index.md @@ -2,8 +2,8 @@ title: Stories Destination rewrite: true beta: true +id: 5e31eed10689db7d78002b54 --- - [Stories](https://www.getstories.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) gathers all the user events that matter on a timeline, so your teams can understand what is going on and take action in the right direction. This destination is maintained by Stories. For any issues with the destination, [contact the Stories Support team](mailto:support@getstories.io). diff --git a/src/connections/destinations/catalog/stormly/index.md b/src/connections/destinations/catalog/stormly/index.md index f401ce208e..a14f62fa41 100644 --- a/src/connections/destinations/catalog/stormly/index.md +++ b/src/connections/destinations/catalog/stormly/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Stormly Destination +id: 5f38f398c30a8412cb23b628 --- - With [Stormly](https://www.stormly.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners), you can access the insights which interest you the most. The Stormly interface guides you through several questions to help define personalization options, then provides insights into behavioral patterns, forecasts, and other information you want to know about your users. This destination is maintained by Stormly. For any issues with the destination, [contact their support team](mailto:support@stormly.com). diff --git a/src/connections/destinations/catalog/strikedeck/index.md b/src/connections/destinations/catalog/strikedeck/index.md index 196959fcbd..7b1a9fffa0 100644 --- a/src/connections/destinations/catalog/strikedeck/index.md +++ b/src/connections/destinations/catalog/strikedeck/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Strikedeck Destination +id: 5c940e99e3498f000177880c --- [Strikedeck](https://strikedeck.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a Customer Success platform which actively manages customer relationships to reduce churn, increase existing revenue and influence new sales. Strikedeck includes Customer Engagement Analytics, Health Scorecard, Notifications, Recommendations & Actions. diff --git a/src/connections/destinations/catalog/survicate/index.md b/src/connections/destinations/catalog/survicate/index.md index b4b9009530..f176cfce1b 100644 --- a/src/connections/destinations/catalog/survicate/index.md +++ b/src/connections/destinations/catalog/survicate/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Survicate Destination +id: 5c922eae1761cd0001a71707 --- [Survicate](https://survicate.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a complete toolkit for customer feedback. From website optimization and customer satisfaction surveys to complex customer insight processes integrated with your email campaigns. diff --git a/src/connections/destinations/catalog/swrve/index.md b/src/connections/destinations/catalog/swrve/index.md index fd2cdc1e53..c9671cb043 100644 --- a/src/connections/destinations/catalog/swrve/index.md +++ b/src/connections/destinations/catalog/swrve/index.md @@ -1,8 +1,8 @@ --- beta: true title: Swrve Destination +id: 59c467ba9e26eb0001380743 --- - ## Getting Started Once the Segment library is integrated, toggle Swrve on in your Segment destination catalog. You can integrate Swrve as a mobile destination (iOS or Android). You'll need to get your `app_id` and `api_key` from the Swrve dashboard and add these to your mobile app. diff --git a/src/connections/destinations/catalog/talkable/index.md b/src/connections/destinations/catalog/talkable/index.md index c061fb5978..6e6486ef6d 100644 --- a/src/connections/destinations/catalog/talkable/index.md +++ b/src/connections/destinations/catalog/talkable/index.md @@ -1,8 +1,8 @@ --- title: 'Talkable Destination' redirect_from: '/connections/destinations/catalog/curebit/' +id: 54521fd525e721e32a72eea6 --- - Our Talkable destination (formerly Curebit) code is open-source on GitHub if you want to [check it out](https://github.com/segment-integrations/analytics.js-integration-curebit). ## Getting Started diff --git a/src/connections/destinations/catalog/talonone/index.md b/src/connections/destinations/catalog/talonone/index.md index 27c33e27be..1f5754d378 100644 --- a/src/connections/destinations/catalog/talonone/index.md +++ b/src/connections/destinations/catalog/talonone/index.md @@ -2,6 +2,7 @@ rewrite: true title: Talon.One Destination beta: true +id: 5de7c705e7d93d5e24742a04 --- Create flexible and targeted promotional & loyalty campaigns with [Talon.One](https://Talon.One/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners). Campaigns can be created and managed by non-technical users such as marketeers. There is no need to get your development team involved. Features include coupons, discounts, loyalty programs, referral tracking, geo-fencing, and bundling. diff --git a/src/connections/destinations/catalog/tamber/index.md b/src/connections/destinations/catalog/tamber/index.md index 739301a006..c939231077 100644 --- a/src/connections/destinations/catalog/tamber/index.md +++ b/src/connections/destinations/catalog/tamber/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Tamber Destination +id: 5c8ad1622b2a130001a7664a --- [Tamber](https://tamber.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) enables you to build your own Google-scale recommendation features in minutes. Deploy cutting edge deep learning models, and run A/B tests to optimize results. diff --git a/src/connections/destinations/catalog/taplytics/index.md b/src/connections/destinations/catalog/taplytics/index.md index bafb4ab44c..2cc13b2771 100644 --- a/src/connections/destinations/catalog/taplytics/index.md +++ b/src/connections/destinations/catalog/taplytics/index.md @@ -1,7 +1,7 @@ --- title: Taplytics Destination +id: 54521fdb25e721e32a72eef5 --- - Our Taplytics destination code is open sourced on GitHub. Feel free to check it out: [iOS](https://github.com/segment-integrations/analytics-ios-integration-taplytics), [Android](https://github.com/segment-integrations/analytics-android-integration-taplytics). ## Getting Started diff --git a/src/connections/destinations/catalog/tapstream/index.md b/src/connections/destinations/catalog/tapstream/index.md index c0a5001183..b272135956 100644 --- a/src/connections/destinations/catalog/tapstream/index.md +++ b/src/connections/destinations/catalog/tapstream/index.md @@ -1,6 +1,7 @@ --- title: 'Tapstream Destination' hidden: true +id: 54521fdb25e721e32a72eef7 --- diff --git a/src/connections/destinations/catalog/tiktok-conversions/index.md b/src/connections/destinations/catalog/tiktok-conversions/index.md index 9f887e8d92..1656b74a06 100644 --- a/src/connections/destinations/catalog/tiktok-conversions/index.md +++ b/src/connections/destinations/catalog/tiktok-conversions/index.md @@ -2,8 +2,8 @@ title: TikTok Conversions hide-boilerplate: true hide-dossier: true +id: 615cae349d109d6b7496a131 --- - {% include content/plan-grid.md name="actions" %} The TikTok Conversions Destination enables advertisers to send Segment events to report events directly to TikTok. Data shared can power TikTok solutions like dynamic product ads, custom targeting, campaign optimization and attribution. diff --git a/src/connections/destinations/catalog/totango/index.md b/src/connections/destinations/catalog/totango/index.md index b3629b6527..c443adbeec 100644 --- a/src/connections/destinations/catalog/totango/index.md +++ b/src/connections/destinations/catalog/totango/index.md @@ -1,7 +1,7 @@ --- title: Totango Destination +id: 54521fdb25e721e32a72eefa --- - Our Totango destination code is all open-source on GitHub if you want to check it out: [Javascript](https://github.com/segment-integrations/analytics.js-integration-totango), [Server](https://github.com/segmentio/integration-totango). ## Getting Started diff --git a/src/connections/destinations/catalog/track-js/index.md b/src/connections/destinations/catalog/track-js/index.md index 607729fb68..6968e01a2f 100644 --- a/src/connections/destinations/catalog/track-js/index.md +++ b/src/connections/destinations/catalog/track-js/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: trackJs Destination +id: 54521fdb25e721e32a72eef9 --- [Track JS](https://trackjs.com/) monitors your web applications for JavaScript errors, alerting you with amazing context about how the user, application, and network got into trouble. The `analytics.js` trackJs Destination is open-source. You can browse the code [on GitHub](https://github.com/segmentio/analytics.js-integrations/tree/master/integrations/trackjs). diff --git a/src/connections/destinations/catalog/trackier/index.md b/src/connections/destinations/catalog/trackier/index.md index 16f887d2c7..b004fdfcf0 100644 --- a/src/connections/destinations/catalog/trackier/index.md +++ b/src/connections/destinations/catalog/trackier/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Trackier Destination +id: 5cd62e29299eb40001acff12 --- [Trackier](https://trackier.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is customisable performance marketing software used by ad networks, agencies and advertisers to manage publisher relations. diff --git a/src/connections/destinations/catalog/tractionboard/index.md b/src/connections/destinations/catalog/tractionboard/index.md index b05f521ef5..3b54a86bfa 100644 --- a/src/connections/destinations/catalog/tractionboard/index.md +++ b/src/connections/destinations/catalog/tractionboard/index.md @@ -1,8 +1,8 @@ --- beta: true title: Tractionboard Destination +id: 569007b3e954a874ca44cd4e --- - ## Getting Started Once the Segment library is integrated in your app, toggle Tractionboard on in your Segment destinations, and add your Segment Token ID which you can find in the Tractionboard Dashboard, under the Settings > Integrations. diff --git a/src/connections/destinations/catalog/trafficguard/index.md b/src/connections/destinations/catalog/trafficguard/index.md index 0084a60d34..aaf8141d15 100644 --- a/src/connections/destinations/catalog/trafficguard/index.md +++ b/src/connections/destinations/catalog/trafficguard/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: TrafficGuard Destination +id: 5c6f5f0b037dcf00014f8fb0 --- [TrafficGuard](https://trafficguard.ai/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) detects, mitigates, and reports on ad fraud before it hits digital advertising budgets. Three formidable layers of protection block both general invalid traffic (GIVT) and sophisticated invalid traffic (SIVT) to ensure that digital advertising results in legitimate advertising engagement. diff --git a/src/connections/destinations/catalog/tray-io/index.md b/src/connections/destinations/catalog/tray-io/index.md index 498ce55396..1de834e6bc 100644 --- a/src/connections/destinations/catalog/tray-io/index.md +++ b/src/connections/destinations/catalog/tray-io/index.md @@ -1,7 +1,7 @@ --- title: Tray.io Destination +id: 56b8444d80412f644ff12c30 --- - ## Getting Started Once your application is set up and instrumented with Segment, turn on tray in your Segment destinations page. After that, log in to your tray account and create a new workflow, using Segment as your trigger. diff --git a/src/connections/destinations/catalog/treasure-data/index.md b/src/connections/destinations/catalog/treasure-data/index.md index 716028627f..eb3d3feda3 100644 --- a/src/connections/destinations/catalog/treasure-data/index.md +++ b/src/connections/destinations/catalog/treasure-data/index.md @@ -1,7 +1,7 @@ --- title: Treasure Destination +id: 55a002660a20f4e22f0fb3c2 --- - This destination is maintained by Treasure Data. Once the Segment library is integrated with your server, toggle Treasure Data on in your Segment destinations, and add your API key (which you can find in your Treasure Data console). You will also need to specify the destination database name. diff --git a/src/connections/destinations/catalog/trustpilot/index.md b/src/connections/destinations/catalog/trustpilot/index.md index e3dc2430c3..a24d223683 100644 --- a/src/connections/destinations/catalog/trustpilot/index.md +++ b/src/connections/destinations/catalog/trustpilot/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Trustpilot Destination +id: 5c6e52858392d6000101d4c1 --- [Trustpilot](https://www.trustpilot.com/) is an open and independent review platform. On Trustpilot, people can share and discover reviews of businesses, and businesses can gain insights and showcase their service and products performance through reviews. diff --git a/src/connections/destinations/catalog/tune/index.md b/src/connections/destinations/catalog/tune/index.md index 0a2b5297e6..559683b883 100644 --- a/src/connections/destinations/catalog/tune/index.md +++ b/src/connections/destinations/catalog/tune/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: TUNE Destination +id: 54521fd925e721e32a72eed7 --- - [TUNE](https://www.tune.com/) helps attribute mobile app events to the advertisements that a customer interacted with. We take care of sending those mobile events to TUNE so that they can be reconciled with ad views. The attributed data can then be [routed](#postbacks) back into other tools that you have enabled in Segment. This destination is maintained by TUNE. Their code is publicly available for [iOS](https://github.com/TuneOSS/segment-integration-ios) and [Android](https://github.com/TuneOSS/segment-integration-android). For any issues with the destination, [contact the TUNE Support team](https://help.tune.com/contact-support/). diff --git a/src/connections/destinations/catalog/tv-squared/index.md b/src/connections/destinations/catalog/tv-squared/index.md index f6938aa069..c12bd13c8a 100644 --- a/src/connections/destinations/catalog/tv-squared/index.md +++ b/src/connections/destinations/catalog/tv-squared/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: tvsquared Destination +id: 54521fdb25e721e32a72eefc --- - [TV Squared](https://tvsquared.com/) enables you to pull same-day TV performance analytics so you can manage TV spend, and create data-driven TV media plans based on network, days, programs, and genres. Our TV Squared Destination is open-source. You can browse the code [in GitHub](https://github.com/segmentio/analytics.js-integrations/tree/master/integrations/tvsquared). ## Getting Started diff --git a/src/connections/destinations/catalog/twitter-ads/index.md b/src/connections/destinations/catalog/twitter-ads/index.md index 5a061b4161..e32803f585 100644 --- a/src/connections/destinations/catalog/twitter-ads/index.md +++ b/src/connections/destinations/catalog/twitter-ads/index.md @@ -1,7 +1,7 @@ --- title: Twitter Destination +id: 54521fdc25e721e32a72eeff --- - [Our Twitter Ads destination code](https://github.com/segment-integrations/analytics.js-integration-twitter-ads) is all open-source on GitHub if you want to check it out. ## Getting Started diff --git a/src/connections/destinations/catalog/unwaffle/index.md b/src/connections/destinations/catalog/unwaffle/index.md index ec3413386c..2c256b87b8 100644 --- a/src/connections/destinations/catalog/unwaffle/index.md +++ b/src/connections/destinations/catalog/unwaffle/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Unwaffle Destination +id: 5c707b074876c300018c37ab --- - [Unwaffle](https://unwaffle.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps SaaS businesses improve their Free Trial conversion rates. By tracking every action that your trialers take, Unwaffle can discover patterns that lead to successful conversions and provide actionable recommendations to boost trial funnel performance. This destination is maintained by Unwaffle. For any issues with the destination, [contact the Unwaffle Support team](mailto:info@unwaffle.com). diff --git a/src/connections/destinations/catalog/upcall/index.md b/src/connections/destinations/catalog/upcall/index.md index 686578993e..dbeb14da16 100644 --- a/src/connections/destinations/catalog/upcall/index.md +++ b/src/connections/destinations/catalog/upcall/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Upcall Destination +id: 5c6ce090721aa60001ad878f --- - [Upcall](https://www.upcall.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) creates real phone conversations seconds after a lead comes in and automatically follows up at the right time and with the right message, 24/7/365. This destination is maintained by Upcall. For any issues with the destination, [contact the Upcall Support team](mailto:success@upcall.com). diff --git a/src/connections/destinations/catalog/user-com/index.md b/src/connections/destinations/catalog/user-com/index.md index e611e6a23f..563d9ca8c4 100644 --- a/src/connections/destinations/catalog/user-com/index.md +++ b/src/connections/destinations/catalog/user-com/index.md @@ -2,8 +2,8 @@ title: 'User.com Destination' beta: true redirect_from: '/connections/destinations/catalog/userengage/' +id: 59c93d8a3c0414000129bcb5 --- - This integration is maintained by contact@userengage.com. ## Getting Started diff --git a/src/connections/destinations/catalog/useriq/index.md b/src/connections/destinations/catalog/useriq/index.md index 644d3e2a85..c614bdb587 100644 --- a/src/connections/destinations/catalog/useriq/index.md +++ b/src/connections/destinations/catalog/useriq/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: UserIQ Destination +id: 5c742629088b680001eb30bb --- - [UserIQ](http://useriq.com) empowers companies to deliver what each user needs to be successful in every moment, starting with adoption. Our platform collects user engagement data from your product and allows you to communicate to your users when they are most engaged: within the product itself. This destination is maintained by UserIQ. For any issues with the destination, [contact the UserIQ Support team](mailto:support@useriq.com). diff --git a/src/connections/destinations/catalog/userlist/index.md b/src/connections/destinations/catalog/userlist/index.md index 329c218118..be64f11d41 100644 --- a/src/connections/destinations/catalog/userlist/index.md +++ b/src/connections/destinations/catalog/userlist/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Userlist Destination +id: 5c75396a02254a0001da2a55 --- - [Userlist](https://userlist.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) allows you to send behavior-based messages to your SaaS users. It's great for onboarding users as well as nurturing them throughout their journey. This destination is maintained by Userlist. For any issues with the destination, [contact the Userlist Support team](mailto:support@userlist.com). diff --git a/src/connections/destinations/catalog/userpilot/index.md b/src/connections/destinations/catalog/userpilot/index.md index 6993831563..36d3219b40 100644 --- a/src/connections/destinations/catalog/userpilot/index.md +++ b/src/connections/destinations/catalog/userpilot/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Userpilot +id: 5ca9d0c1b7119500014381d3 --- [Userpilot](https://userpilot.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps product teams increase user adoption by allowing them to trigger highly personalized onboarding experiences across the user journey. The Segment integration will help you install and send data to Userpilot without added development time. diff --git a/src/connections/destinations/catalog/uservoice/index.md b/src/connections/destinations/catalog/uservoice/index.md index f609b772a6..c37b06e7a9 100644 --- a/src/connections/destinations/catalog/uservoice/index.md +++ b/src/connections/destinations/catalog/uservoice/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: UserVoice Destination +id: 54521fdc25e721e32a72ef00 --- - [Uservoice](https://www.uservoice.com/) is a customer support and feedback tool that lets your users submit feedback right from your site, and helps you manage all the incoming requests. ## Getting Started diff --git a/src/connections/destinations/catalog/variance/index.md b/src/connections/destinations/catalog/variance/index.md index a5ef7116b3..6f283eacf9 100644 --- a/src/connections/destinations/catalog/variance/index.md +++ b/src/connections/destinations/catalog/variance/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Variance Destination +id: 6099bbbc3d51136d7d293b0c --- - [Variance](https://variance.com?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) hooks into your customer data and makes it easy to access growth signals across product, marketing, and sales. The platform provides your growth team with clear, intent-based signals, from all stages of a customer's journey. This destination is maintained by Variance. For any issues with the destination, [contact the Variance Support team](mailto:support@variance.com). diff --git a/src/connections/destinations/catalog/vero/index.md b/src/connections/destinations/catalog/vero/index.md index bcad5c4553..d5718c9af9 100644 --- a/src/connections/destinations/catalog/vero/index.md +++ b/src/connections/destinations/catalog/vero/index.md @@ -1,7 +1,7 @@ --- title: Vero Destination +id: 54521fdc25e721e32a72ef03 --- - Our Vero destination code is all open-source on GitHub if you want to check it out: [Javascript](https://github.com/segmentio/analytics.js-integrations/tree/master/integrations/vero), [Server](https://github.com/segmentio/integration-vero). ## Getting Started diff --git a/src/connections/destinations/catalog/vespucci/index.md b/src/connections/destinations/catalog/vespucci/index.md index 8902156d97..b3eda545e9 100644 --- a/src/connections/destinations/catalog/vespucci/index.md +++ b/src/connections/destinations/catalog/vespucci/index.md @@ -1,8 +1,8 @@ --- title: Vespucci Destination rewrite: true +id: 5e8761995f50ba6c68e5ea53 --- - [Vespucci](https://vespuccianalytics.com) is an unsupervised analytics solution relying on models that highlight the elements and content in your app revealing remarkable behaviors. This destination is maintained by Vespucci. For any issues with the destination, [contact the Vespucci Support team](mailto:info@amerigotechnology.com). diff --git a/src/connections/destinations/catalog/vidora/index.md b/src/connections/destinations/catalog/vidora/index.md index ec0a280135..3ff32e6d09 100644 --- a/src/connections/destinations/catalog/vidora/index.md +++ b/src/connections/destinations/catalog/vidora/index.md @@ -1,8 +1,8 @@ --- title: Vidora Destination rewrite: true +id: 5ff67d3d4b6491271c0deae0 --- - [Vidora](https://vidora.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) provides a No Code Machine Learning Platform for Marketing and Product teams to quickly and easily transform raw data into predictions. Examples include [predicting future customer behaviors](https://www.vidora.com/docs/category/overview/predict-future-behavior-use-cases/) or [predicting customer attributes](https://www.vidora.com/docs/category/overview/predict-attributes-use-cases/). This destination is maintained by Vidora. For any issues with the destination, [contact the Vidora Support team](mailto:support@vidora.com). diff --git a/src/connections/destinations/catalog/visual-website-optimizer/index.md b/src/connections/destinations/catalog/visual-website-optimizer/index.md index 8c7c687876..7403ebe22d 100644 --- a/src/connections/destinations/catalog/visual-website-optimizer/index.md +++ b/src/connections/destinations/catalog/visual-website-optimizer/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: VWO Destination +id: 54521fdc25e721e32a72ef01 --- - [VWO](https://vwo.com/) is an all-in-one platform that helps you conduct visitor research, build an optimization roadmap, and run continuous experimentation. Their platform enables you to create a process-driven optimization, get benefits of a connected, unified view of the individual visitor and run A/B tests at scale without reducing performance. The VWO Destination is open-source and you can browse the code [on GitHub](https://github.com/segment-integrations/analytics.js-integration-visual-website-optimizer). diff --git a/src/connections/destinations/catalog/vitally/index.md b/src/connections/destinations/catalog/vitally/index.md index a367d719ac..7ea0ad1a4e 100644 --- a/src/connections/destinations/catalog/vitally/index.md +++ b/src/connections/destinations/catalog/vitally/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Vitally Destination +id: 5c5239a982bdf80001a6ac7d --- - [Vitally](https://vitally.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a customer success platform for B2B SaaS companies that wraps your unified customer data with powerful analytics, alerts, and workflows to help you build successful customers. This destination is maintained by Vitally. For any issues with the destination, [contact the Vitally Support team](mailto:support@vitally.io). diff --git a/src/connections/destinations/catalog/voucherify/index.md b/src/connections/destinations/catalog/voucherify/index.md index c8d5a780b5..93c284f21f 100644 --- a/src/connections/destinations/catalog/voucherify/index.md +++ b/src/connections/destinations/catalog/voucherify/index.md @@ -2,8 +2,8 @@ title: Voucherify Destination rewrite: true beta: true +id: 5e42baaecf559c535c8cbe97 --- - [Voucherify](https://voucherify.io?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps developers integrate digital promotions across any marketing channel or customer touchpoint - eventually giving full control over campaigns back to the marketing team. This destination is maintained by Voucherify. For any issues with the destination, [contact the Voucherify Support team](mailto:support@voucherify.io). diff --git a/src/connections/destinations/catalog/walkme/index.md b/src/connections/destinations/catalog/walkme/index.md index 65cc44269b..0830e4cf55 100644 --- a/src/connections/destinations/catalog/walkme/index.md +++ b/src/connections/destinations/catalog/walkme/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: WalkMe Destination +id: 5d25d6e0885427000195bf80 --- [WalkMe](https://www.walkme.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) Digital Adoption Platform provides guidance, engagement, insights and automation to users. diff --git a/src/connections/destinations/catalog/webengage/index.md b/src/connections/destinations/catalog/webengage/index.md index b0c847442c..5297cc64c8 100644 --- a/src/connections/destinations/catalog/webengage/index.md +++ b/src/connections/destinations/catalog/webengage/index.md @@ -1,7 +1,7 @@ --- title: WebEngage Destination +id: 54521fdc25e721e32a72ef02 --- - This integration is maintained by [WebEngage Support](mailto:support@webengage.com). ## Getting Started diff --git a/src/connections/destinations/catalog/webhooks/index.md b/src/connections/destinations/catalog/webhooks/index.md index 7ccb5455f6..aeb02b9349 100644 --- a/src/connections/destinations/catalog/webhooks/index.md +++ b/src/connections/destinations/catalog/webhooks/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Webhooks Destination +id: 54521fdc25e721e32a72ef04 --- Segment Webhooks submit real-time user data to your own HTTP endpoints. A Webhook is an HTTP callback: a simple event-notification using HTTP POST. A web application implementing Webhooks will POST a message to a URL when certain things happen. diff --git a/src/connections/destinations/catalog/whale-alerts/index.md b/src/connections/destinations/catalog/whale-alerts/index.md index 835a23a174..706e444e20 100644 --- a/src/connections/destinations/catalog/whale-alerts/index.md +++ b/src/connections/destinations/catalog/whale-alerts/index.md @@ -1,7 +1,7 @@ --- title: Whalr Destination +id: 55283a150a20f4e22f0fb37e --- - This destination is maintained by Whalr. ## About Whalr diff --git a/src/connections/destinations/catalog/whale-watch/index.md b/src/connections/destinations/catalog/whale-watch/index.md index 5e741b70a2..4acbd0da7c 100644 --- a/src/connections/destinations/catalog/whale-watch/index.md +++ b/src/connections/destinations/catalog/whale-watch/index.md @@ -1,4 +1,5 @@ --- title: 'Whale Watch Destination' hidden: true ---- \ No newline at end of file +id: 552719e10a20f4e22f0fb37c +--- diff --git a/src/connections/destinations/catalog/wigzo/index.md b/src/connections/destinations/catalog/wigzo/index.md index 04c3fc70dc..9c839a6061 100644 --- a/src/connections/destinations/catalog/wigzo/index.md +++ b/src/connections/destinations/catalog/wigzo/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Wigzo Destination +id: 564e4f97e954a874ca44cbd3 --- - [Wigzo](https://www.wigzo.com/) is a Contextual Marketing Platform that helps marketers send smarter communication through email or in-app, by changing content dynamically based on User behavior. Using Wigzo's predictive technologies, companies can produce Dynamic content blocks which automatically populate in emails based on User behavior and Context. This destination is maintained by Wigzo. For any issues with the destination, [contact the Wigzo Support team](mailto:support@wigzo.com) diff --git a/src/connections/destinations/catalog/windsor/index.md b/src/connections/destinations/catalog/windsor/index.md index 6d7b3b068e..fb6b9dc36f 100644 --- a/src/connections/destinations/catalog/windsor/index.md +++ b/src/connections/destinations/catalog/windsor/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Windsor Destination +id: 5dca74a6907ce1604b781476 --- - [Windsor](https://windsor.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) provides startups a unified dashboard for all SaaS data. It pulls analytics and email events, customer support tickets, credit card transactions, and more to give a complete view of customers. This destination is maintained by Windsor. For any issues with the destination, [contact the Windsor Support team](mailto:support@windsor.io). diff --git a/src/connections/destinations/catalog/wishpond/index.md b/src/connections/destinations/catalog/wishpond/index.md index 976c5ee890..5cb503d6ec 100644 --- a/src/connections/destinations/catalog/wishpond/index.md +++ b/src/connections/destinations/catalog/wishpond/index.md @@ -1,8 +1,8 @@ --- beta: true title: Wishpond Destination +id: 575f018380412f644ff139bf --- - This destination is maintained by Wishpond. The [Wishpond JavaScript (browser) Integration](https://github.com/wishpond-dev/analytics.js-integration-wishpond) destination code is open source and on GitHub. Feel free to check it out. diff --git a/src/connections/destinations/catalog/woopra/index.md b/src/connections/destinations/catalog/woopra/index.md index 470101616e..202f4f25fb 100644 --- a/src/connections/destinations/catalog/woopra/index.md +++ b/src/connections/destinations/catalog/woopra/index.md @@ -1,7 +1,7 @@ --- title: Woopra Destination +id: 54521fdc25e721e32a72ef05 --- - Our Woopra destination code is all open-source on GitHub if you want to check it out: [Javascript](https://github.com/segment-integrations/analytics.js-integration-woopra), [Server](https://github.com/segmentio/integration-woopra). ## Getting Started diff --git a/src/connections/destinations/catalog/xplenty/index.md b/src/connections/destinations/catalog/xplenty/index.md index f7a2c4b3d7..3ff629a14c 100644 --- a/src/connections/destinations/catalog/xplenty/index.md +++ b/src/connections/destinations/catalog/xplenty/index.md @@ -1,4 +1,5 @@ --- title: 'Xplenty Destination' hidden: true ---- \ No newline at end of file +id: 54abfde6db31d978f14a77d0 +--- diff --git a/src/connections/destinations/catalog/xtremepush/index.md b/src/connections/destinations/catalog/xtremepush/index.md index 65dbc960a2..adc3b08e70 100644 --- a/src/connections/destinations/catalog/xtremepush/index.md +++ b/src/connections/destinations/catalog/xtremepush/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Xtremepush Destination +id: 5ca77adcc7781c00018a459b --- [Xtremepush](https://xtremepush.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a complete digital engagement platform. Empowering global brands to create personalised, real-time experiences for their customers across mobile, web, email, SMS and social. Xtremepush's clients are increasing revenue through data-driven, contextually-relevant interactions. The software is flexible, reliable and quick to deploy, backed up by a team of expert strategists and technical support. diff --git a/src/connections/destinations/catalog/yandex-metrica/index.md b/src/connections/destinations/catalog/yandex-metrica/index.md index bf89ea3b32..26b7872f18 100644 --- a/src/connections/destinations/catalog/yandex-metrica/index.md +++ b/src/connections/destinations/catalog/yandex-metrica/index.md @@ -1,6 +1,7 @@ --- rewrite: true title: Yandex.Metrica Destination +id: 54521fdc25e721e32a72ef07 --- [Yandex.Metrica](https://metrica.yandex.com/about?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) enables customizable report analytics so marketers can toggle between attribution models, segment and compare audiences based on custom details like OS, number of visits, and ad blocker usage. It also supports session replay, heat maps, form analytics so marketers can review user movements such as mouseclicks, form fill ins, and keystrokes. Finally, it supports custom events tracking and purchase funnels, and automates eCommerce reports to calculate metrics like cost per order and total costs. diff --git a/src/connections/destinations/catalog/yellowhammer/index.md b/src/connections/destinations/catalog/yellowhammer/index.md index 79b437b157..8de2700e4c 100644 --- a/src/connections/destinations/catalog/yellowhammer/index.md +++ b/src/connections/destinations/catalog/yellowhammer/index.md @@ -1,4 +1,5 @@ --- title: 'Yellowhammer Destination' hidden: true ---- \ No newline at end of file +id: 54de9a11db31d978f14a9a67 +--- diff --git a/src/connections/destinations/catalog/youbora/index.md b/src/connections/destinations/catalog/youbora/index.md index 1bfe8e3313..a4a392d841 100644 --- a/src/connections/destinations/catalog/youbora/index.md +++ b/src/connections/destinations/catalog/youbora/index.md @@ -1,7 +1,7 @@ --- title: Youbora Destination +id: 59c04bd6432df886f42eea37 --- - ### Web Destination When you enable Youbora in the Segment web app, your changes appear in the Segment CDN in about 45 minutes, and then Analytics.js starts asynchronously loading Youbora's Javascript onto your page. (This means you should remove Youbora's snippet from your page.) diff --git a/src/connections/destinations/catalog/zaius/index.md b/src/connections/destinations/catalog/zaius/index.md index 63a3254785..38e6c05849 100644 --- a/src/connections/destinations/catalog/zaius/index.md +++ b/src/connections/destinations/catalog/zaius/index.md @@ -1,8 +1,8 @@ --- title: Zaius Destination hide-personas-partial: true +id: 56cb441480412f644ff12d37 --- - ## Zaius Destination Zaius is a behavioral marketing engine that allows marketers to analyze, segment, and engage their customers across web, mobile, email and offline channels and devices. diff --git a/src/connections/destinations/catalog/zapier/index.md b/src/connections/destinations/catalog/zapier/index.md index 428c00153e..abe61290d5 100644 --- a/src/connections/destinations/catalog/zapier/index.md +++ b/src/connections/destinations/catalog/zapier/index.md @@ -2,6 +2,7 @@ rewrite: true beta: true title: Zapier Destination +id: 57c4996480412f644ff29f78 --- [Zapier](https://zapier.com/apps/integrations) empowers businesses to create processes and systems that let computers do what they do best - automating information transfer, allowing humans to be more productive. diff --git a/src/connections/destinations/catalog/zendesk-connect/index.md b/src/connections/destinations/catalog/zendesk-connect/index.md index 0c1d7463c4..03842fcfc6 100644 --- a/src/connections/destinations/catalog/zendesk-connect/index.md +++ b/src/connections/destinations/catalog/zendesk-connect/index.md @@ -1,8 +1,8 @@ --- title: 'Zendesk Connect Destination' redirect_from: '/connections/destinations/catalog/outbound/' +id: 54521fd925e721e32a72eee4 --- - ## Getting Started When you enable Zendesk Connect from the Segment web app: diff --git a/src/connections/destinations/catalog/zendesk/index.md b/src/connections/destinations/catalog/zendesk/index.md index df90a4277a..d5a41358cf 100644 --- a/src/connections/destinations/catalog/zendesk/index.md +++ b/src/connections/destinations/catalog/zendesk/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Zendesk Destination +id: 54521fdc25e721e32a72ef06 --- - [Zendesk](https://www.zendesk.com/support/documentation/) is a premier, cloud-based customer service application. It was designed with one purpose in mind: to improve communication between a company and its customers. Their products allow businesses to be more reliable, flexible, and scalable. They help improve communication and make sense of massive amounts of data. Above all, they work together to build the best experience for your customers. diff --git a/src/connections/destinations/catalog/zopim/index.md b/src/connections/destinations/catalog/zopim/index.md index 56d37f8a2e..40117899fe 100644 --- a/src/connections/destinations/catalog/zopim/index.md +++ b/src/connections/destinations/catalog/zopim/index.md @@ -1,8 +1,8 @@ --- rewrite: true title: Zendesk Chat (Zopim) Destination +id: 54ec1baddb31d978f14aa7f9 --- - [Zendesk Chat](https://developer.zendesk.com/rest_api/docs/chat/introduction), (previously called Zopim) is a live chat solution that helps businesses increase sales conversion by engaging important leads on their websites. The `analytics.js` Zendesk Chat Destination is open-source. You can browse the code [on GitHub](https://github.com/segmentio/analytics.js-integrations/tree/master/integrations/zopim). **NOTE:** Zendesk Chat currently offers [two types of widgets](https://support.zendesk.com/hc/en-us/articles/115007912068-Using-the-Chat-JavaScript-API): a standalone `Chat Widget`, which is mainly designed to provide chat related features, and a `Web Widget`, which incorporates both Zendesk Chat and Zendesk Support functionalities. At the moment, Segment only supports the `Chat Widget`. For more details refer to the "Getting Started" section below. diff --git a/src/connections/sources/catalog/cloud-apps/activecampaign/index.md b/src/connections/sources/catalog/cloud-apps/activecampaign/index.md index 49034d5570..956906fb84 100644 --- a/src/connections/sources/catalog/cloud-apps/activecampaign/index.md +++ b/src/connections/sources/catalog/cloud-apps/activecampaign/index.md @@ -1,7 +1,7 @@ --- title: ActiveCampaign Source +id: XE0vf1bTDh --- - {% include content/source-region-unsupported.md %} Active Campaign is an email marketing & marketing automation solution for small businesses. [Visit Website](http://www.activecampaign.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) diff --git a/src/connections/sources/catalog/cloud-apps/aircall/index.md b/src/connections/sources/catalog/cloud-apps/aircall/index.md index d5962c88d6..ea177ff611 100644 --- a/src/connections/sources/catalog/cloud-apps/aircall/index.md +++ b/src/connections/sources/catalog/cloud-apps/aircall/index.md @@ -1,8 +1,8 @@ --- title: Aircall Source beta: true +id: p1Kv6YKjE3 --- - {% include content/source-region-unsupported.md %} Connect [Aircall](https://aircall.io) with Segment to bring Aircall events and phone call data to your data warehouse. Improve your knowledge of customer touchpoints by leveraging call activity. diff --git a/src/connections/sources/catalog/cloud-apps/airship/index.md b/src/connections/sources/catalog/cloud-apps/airship/index.md index 508307a280..e72c0a6e37 100644 --- a/src/connections/sources/catalog/cloud-apps/airship/index.md +++ b/src/connections/sources/catalog/cloud-apps/airship/index.md @@ -1,8 +1,8 @@ --- title: Airship Source beta: true +id: 85V0O2lkFs --- - {% include content/source-region-unsupported.md %} [Airship](https://www.airship.com) gives brands the data, channels, orchestration and services they need to deliver push notifications, emails, SMS, in-app messages, and more to the right person at the right moment — building trust, boosting engagement, driving action and growing value. diff --git a/src/connections/sources/catalog/cloud-apps/amazon-s3/index.md b/src/connections/sources/catalog/cloud-apps/amazon-s3/index.md index ff3013b5fe..d52e268828 100644 --- a/src/connections/sources/catalog/cloud-apps/amazon-s3/index.md +++ b/src/connections/sources/catalog/cloud-apps/amazon-s3/index.md @@ -1,8 +1,8 @@ --- title: Amazon S3 from Lambda rewrite: true +id: GNLT5OQ45P --- - {% include content/source-region-unsupported.md %} This document contains a procedure that enables you to upload a CSV file containing data to Amazon S3, where it uses Lambda to automatically parse, format, and upload the data to Segment. diff --git a/src/connections/sources/catalog/cloud-apps/amplitude-cohorts/index.md b/src/connections/sources/catalog/cloud-apps/amplitude-cohorts/index.md index 1f17f45649..0deafb487f 100644 --- a/src/connections/sources/catalog/cloud-apps/amplitude-cohorts/index.md +++ b/src/connections/sources/catalog/cloud-apps/amplitude-cohorts/index.md @@ -1,7 +1,7 @@ --- title: Amplitude Engage Event Source +id: pHcia14h1B --- - {% include content/source-region-unsupported.md %} This source combines Amplitude's analytics with Segment's rich connections diff --git a/src/connections/sources/catalog/cloud-apps/autopilothq/index.md b/src/connections/sources/catalog/cloud-apps/autopilothq/index.md index e28fcf00f1..b7498726ee 100644 --- a/src/connections/sources/catalog/cloud-apps/autopilothq/index.md +++ b/src/connections/sources/catalog/cloud-apps/autopilothq/index.md @@ -1,7 +1,7 @@ --- title: Autopilot Source +id: R7eWaTLYUs --- - {% include content/source-region-unsupported.md %} [Autopilot](https://autopilothq.com/) makes automating customer journeys as simple as drawing on a whiteboard. Engage at just the right time with personalized emails, in-app messages, SMS, and postcards. diff --git a/src/connections/sources/catalog/cloud-apps/beamer/index.md b/src/connections/sources/catalog/cloud-apps/beamer/index.md index 4093b93b76..fd48ce9013 100644 --- a/src/connections/sources/catalog/cloud-apps/beamer/index.md +++ b/src/connections/sources/catalog/cloud-apps/beamer/index.md @@ -1,8 +1,8 @@ --- title: Beamer Source beta: true +id: ErcsNGMEwt --- - {% include content/source-region-unsupported.md %} [Beamer](https://www.getbeamer.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a changelog and notification center that lets you announce new features, product updates, special offers and more. diff --git a/src/connections/sources/catalog/cloud-apps/blueshift/index.md b/src/connections/sources/catalog/cloud-apps/blueshift/index.md index 116eca65dc..b39af7d3d3 100644 --- a/src/connections/sources/catalog/cloud-apps/blueshift/index.md +++ b/src/connections/sources/catalog/cloud-apps/blueshift/index.md @@ -1,7 +1,7 @@ --- title: Blueshift Source +id: M4IdvFGSk9 --- - {% include content/source-region-unsupported.md %} Blueshift is an AI powered customer engagement platform for growth marketers. With Blueshift, you can set up programmatic cross-channel marketing campaigns across Email, Mobile, Website and other channels. diff --git a/src/connections/sources/catalog/cloud-apps/braze/index.md b/src/connections/sources/catalog/cloud-apps/braze/index.md index dd6ff25440..923b92883b 100644 --- a/src/connections/sources/catalog/cloud-apps/braze/index.md +++ b/src/connections/sources/catalog/cloud-apps/braze/index.md @@ -1,7 +1,7 @@ --- title: Braze Source +id: L8TEm5Z8UV --- - {% include content/source-region-unsupported.md %} [Braze](https://www.braze.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a marketing automation and customer engagement platform. Growth, Engagement, and Marketing teams use Braze to build great long term relationships with their customers across key digital channels. diff --git a/src/connections/sources/catalog/cloud-apps/candu/index.md b/src/connections/sources/catalog/cloud-apps/candu/index.md index 71e5d74556..dbe8014d7d 100644 --- a/src/connections/sources/catalog/cloud-apps/candu/index.md +++ b/src/connections/sources/catalog/cloud-apps/candu/index.md @@ -2,8 +2,8 @@ title: Candu Source beta: true source-type: event +id: nmb56PunPc --- - {% include content/source-region-unsupported.md %} [Candu](https://candu.ai/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is the first UI editor for enterprise applications that allows you to drag and drop your own UI components to build product experiences — no coding required. diff --git a/src/connections/sources/catalog/cloud-apps/chatlio/index.md b/src/connections/sources/catalog/cloud-apps/chatlio/index.md index 0bdcfd5abd..c4ffaf3b83 100644 --- a/src/connections/sources/catalog/cloud-apps/chatlio/index.md +++ b/src/connections/sources/catalog/cloud-apps/chatlio/index.md @@ -1,8 +1,8 @@ --- title: Chatlio Source beta: true +id: W3065KyMWF --- - {% include content/source-region-unsupported.md %} Chatlio is a live chat tool that allows you to talk to your customers through your existing Slack service. Chatlio provides built in support for sending [chat related events](https://segment.com/docs/connections/spec/live-chat/) to Segment to give you a full picture of activity on your site including live chat. Visit [Chatlio for more info](https://chatlio.com/). diff --git a/src/connections/sources/catalog/cloud-apps/customer-io/index.md b/src/connections/sources/catalog/cloud-apps/customer-io/index.md index 668510461e..6be27f7d3c 100644 --- a/src/connections/sources/catalog/cloud-apps/customer-io/index.md +++ b/src/connections/sources/catalog/cloud-apps/customer-io/index.md @@ -1,8 +1,8 @@ --- title: Customer.io Source redirect_from: "/connections/sources/catalog/cloud-apps/customer.io/" +id: sTypQz3Fd2 --- - {% include content/source-region-unsupported.md %} [Customer.io](https://customer.io/) is an automated email tool. It lets you set up rules to automatically send emails to your users after they perform actions, making drip email campaigns really easy. diff --git a/src/connections/sources/catalog/cloud-apps/delighted/index.md b/src/connections/sources/catalog/cloud-apps/delighted/index.md index 17cf3c963f..e224863b33 100644 --- a/src/connections/sources/catalog/cloud-apps/delighted/index.md +++ b/src/connections/sources/catalog/cloud-apps/delighted/index.md @@ -1,8 +1,8 @@ --- title: Delighted Source rewrite: true +id: 3yeoUP8E3Y --- - {% include content/source-region-unsupported.md %} [Delighted](https://delighted.com/) is the fastest and easiest way to gather actionable feedback from your customers. Use the feedback you gather from customers in all of your decision making processes. Send your feedback to your BI and data warehouses automatically. diff --git a/src/connections/sources/catalog/cloud-apps/drip/index.md b/src/connections/sources/catalog/cloud-apps/drip/index.md index c5a7501c8e..011b3a5184 100644 --- a/src/connections/sources/catalog/cloud-apps/drip/index.md +++ b/src/connections/sources/catalog/cloud-apps/drip/index.md @@ -1,5 +1,6 @@ --- title: Drip Source +id: m6FUZHH7tQ --- Drip is an automated email tool that lets you set up a drip campaign on your site in a few minutes. After a user signs up, it'll send them the next email in your series every few days. [Visit Website](http://mbsy.co/lqb7?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) diff --git a/src/connections/sources/catalog/cloud-apps/facebook-ads/index.md b/src/connections/sources/catalog/cloud-apps/facebook-ads/index.md index acd1b7beac..8279bea9ee 100644 --- a/src/connections/sources/catalog/cloud-apps/facebook-ads/index.md +++ b/src/connections/sources/catalog/cloud-apps/facebook-ads/index.md @@ -2,8 +2,8 @@ title: Facebook Ads Source rewrite: true strat: facebook +id: mazatB39IS --- - {% include content/source-region-unsupported.md %} Facebook is one of the most efficient ways to advertise online. Take your company's analysis to the next level by adding [Facebook Ads](https://www.facebook.com/business/products/ads) as a Source to Segment. diff --git a/src/connections/sources/catalog/cloud-apps/facebook-lead-ads/index.md b/src/connections/sources/catalog/cloud-apps/facebook-lead-ads/index.md index 7ce01f121f..05a25c7fe0 100644 --- a/src/connections/sources/catalog/cloud-apps/facebook-lead-ads/index.md +++ b/src/connections/sources/catalog/cloud-apps/facebook-lead-ads/index.md @@ -3,8 +3,8 @@ title: Facebook Lead Ads Source rewrite: true strat: facebook beta: true +id: ODf0vA6dcH --- - {% include content/source-region-unsupported.md %} Facebook Lead Ads help you capture contact information from people who have expressed interest in your product. Without leaving Facebook's interface, your prospects can now share helpful information with you including work email, name, phone number, and more. Learn more about Facebook Lead Ads [here](https://www.facebook.com/business/news/lead-ads-launch).  diff --git a/src/connections/sources/catalog/cloud-apps/factual-engine/index.md b/src/connections/sources/catalog/cloud-apps/factual-engine/index.md index 2286c24cf8..b9e4e24d9c 100644 --- a/src/connections/sources/catalog/cloud-apps/factual-engine/index.md +++ b/src/connections/sources/catalog/cloud-apps/factual-engine/index.md @@ -2,8 +2,8 @@ title: Factual Engine Mobile SDK Source beta: true source-type: event +id: n8YgCndi75 --- - {% include content/source-region-unsupported.md %} ## How Engine Works diff --git a/src/connections/sources/catalog/cloud-apps/foursquare-pilgrim/index.md b/src/connections/sources/catalog/cloud-apps/foursquare-pilgrim/index.md index 0c0022bc21..14efb2e61b 100644 --- a/src/connections/sources/catalog/cloud-apps/foursquare-pilgrim/index.md +++ b/src/connections/sources/catalog/cloud-apps/foursquare-pilgrim/index.md @@ -1,8 +1,8 @@ --- title: Foursquare Pilgrim beta: true +id: Eek5OnuA7e --- - {% include content/source-region-unsupported.md %} [Foursquare's Pilgrim SDK](https://developer.foursquare.com/pilgrimsdk) provides real-time event triggering based upon your users’ location in the physical world, allowing you to harness our powerful geotargeting capabilities to send those events to other services using Segment. diff --git a/src/connections/sources/catalog/cloud-apps/friendbuy/index.md b/src/connections/sources/catalog/cloud-apps/friendbuy/index.md index 9e02881d6b..5cef946b07 100644 --- a/src/connections/sources/catalog/cloud-apps/friendbuy/index.md +++ b/src/connections/sources/catalog/cloud-apps/friendbuy/index.md @@ -1,7 +1,7 @@ --- title: 'Friendbuy Source' +id: 1drDrwuySw --- - {% include content/source-region-unsupported.md %} Friendbuy is a referral marketing platform that powers modern day word of mouth. Designed for growth marketers, Friendbuy allows companies to acquire new customers at scale through seamlessly integrated referral and influencer campaigns. diff --git a/src/connections/sources/catalog/cloud-apps/google-ads/index.md b/src/connections/sources/catalog/cloud-apps/google-ads/index.md index 28935c31f9..7c3e4a450c 100644 --- a/src/connections/sources/catalog/cloud-apps/google-ads/index.md +++ b/src/connections/sources/catalog/cloud-apps/google-ads/index.md @@ -1,8 +1,8 @@ --- title: Google Ads Source rewrite: true +id: cQ8NOxeApJ --- - {% include content/source-region-unsupported.md %} Google Ads is an online advertising service developed by Google. With Google Ads, you can take advantage of online advertising to improve your internet marketing effectiveness. [Visit Website](https://ads.google.com/home/) diff --git a/src/connections/sources/catalog/cloud-apps/herow/index.md b/src/connections/sources/catalog/cloud-apps/herow/index.md index ce47012e35..c071acc48a 100644 --- a/src/connections/sources/catalog/cloud-apps/herow/index.md +++ b/src/connections/sources/catalog/cloud-apps/herow/index.md @@ -1,8 +1,8 @@ --- title: Herow beta: true +id: xJSb170s6B --- - {% include content/source-region-unsupported.md %} [HEROW](https://www.herow.io) is a contextual platform for mobile application. Built around everyday behaviors and powered by location intelligence, its one-stop solution allows apps to maximize mobile engagement with their users. diff --git a/src/connections/sources/catalog/cloud-apps/hubspot/index.md b/src/connections/sources/catalog/cloud-apps/hubspot/index.md index df3ef997fc..9078926406 100644 --- a/src/connections/sources/catalog/cloud-apps/hubspot/index.md +++ b/src/connections/sources/catalog/cloud-apps/hubspot/index.md @@ -1,8 +1,8 @@ --- title: HubSpot Source rewrite: true +id: 2baks93o --- - {% include content/source-region-unsupported.md %} [HubSpot](http://www.hubspot.com) is an all-in-one marketing tool that helps attract new leads and convert them into paying customers, with features like landing page creation and email automation. diff --git a/src/connections/sources/catalog/cloud-apps/intercom/index.md b/src/connections/sources/catalog/cloud-apps/intercom/index.md index 948b839e53..55ee34cf2c 100644 --- a/src/connections/sources/catalog/cloud-apps/intercom/index.md +++ b/src/connections/sources/catalog/cloud-apps/intercom/index.md @@ -1,8 +1,8 @@ --- title: Intercom Source rewrite: true +id: b3346ddd --- - {% include content/source-region-unsupported.md %} [Intercom](http://intercom.com) is a customer platform with a suite of products for live chat, marketing, feedback, and support. With Intercom you will be able to send targeted messages to the right people at the right time, manage conversations with leads and customers at scale and create, organize, and publish articles to help people get answers to their questions and get started with your app. diff --git a/src/connections/sources/catalog/cloud-apps/iterable/index.md b/src/connections/sources/catalog/cloud-apps/iterable/index.md index 16ab545ead..35f444c19d 100644 --- a/src/connections/sources/catalog/cloud-apps/iterable/index.md +++ b/src/connections/sources/catalog/cloud-apps/iterable/index.md @@ -1,7 +1,7 @@ --- title: 'Iterable Source' +id: lI8p2ldOqa --- - {% include content/source-region-unsupported.md %} Iterable is the growth marketing platform that enables brands to create, execute and optimize campaigns to power world-class customer engagement across email, push, SMS, in-app and more with unparalleled data flexibility. An integrated, cross-channel solution—built for marketers, trusted by engineers, designed with intelligence. diff --git a/src/connections/sources/catalog/cloud-apps/klaviyo/index.md b/src/connections/sources/catalog/cloud-apps/klaviyo/index.md index d26d9e01c2..186eed829a 100644 --- a/src/connections/sources/catalog/cloud-apps/klaviyo/index.md +++ b/src/connections/sources/catalog/cloud-apps/klaviyo/index.md @@ -1,7 +1,7 @@ --- title: 'Klaviyo Source' +id: EfKbe2yt0J --- - {% include content/source-region-unsupported.md %} Klaviyo is an email marketing platform that helps companies make more money. It lets you send personalized newsletters, triggered emails, product recommendations, push notifications and sync your data to facebook custom audiences. [Visit Website](https://www.klaviyo.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) diff --git a/src/connections/sources/catalog/cloud-apps/klenty/index.md b/src/connections/sources/catalog/cloud-apps/klenty/index.md index c11d18d527..7b78260a80 100644 --- a/src/connections/sources/catalog/cloud-apps/klenty/index.md +++ b/src/connections/sources/catalog/cloud-apps/klenty/index.md @@ -1,8 +1,8 @@ --- title: Klenty Source beta: true +id: D6h3UEduNW --- - {% include content/source-region-unsupported.md %} [Klenty](https://www.klenty.com/) helps sales teams to send personalized emails and automated follow-ups at scale. With Klenty, your sales team can completely automate their email outreach and focus on closing more deals. diff --git a/src/connections/sources/catalog/cloud-apps/launchdarkly/index.md b/src/connections/sources/catalog/cloud-apps/launchdarkly/index.md index 02ddd06fa9..007a8392b8 100644 --- a/src/connections/sources/catalog/cloud-apps/launchdarkly/index.md +++ b/src/connections/sources/catalog/cloud-apps/launchdarkly/index.md @@ -1,7 +1,7 @@ --- title: LaunchDarkly Source +id: cODRw1GgIP --- - {% include content/source-region-unsupported.md %} [LaunchDarkly](https://launchdarkly.com) is a feature management platform that empowers development teams to safely deliver and control software through feature flags. diff --git a/src/connections/sources/catalog/cloud-apps/leanplum/index.md b/src/connections/sources/catalog/cloud-apps/leanplum/index.md index 0f92293259..cff6d17637 100644 --- a/src/connections/sources/catalog/cloud-apps/leanplum/index.md +++ b/src/connections/sources/catalog/cloud-apps/leanplum/index.md @@ -2,8 +2,8 @@ title: Leanplum Source beta: true source-type: event +id: NRgENc89eR --- - {% include content/source-region-unsupported.md %} [Leanplum](https://leanplum.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a multi-channel customer engagement platform that helps Growth and Marketing teams to achieve their engagement and revenue goals. diff --git a/src/connections/sources/catalog/cloud-apps/looker/index.md b/src/connections/sources/catalog/cloud-apps/looker/index.md index 82caeb6570..b57bc55578 100644 --- a/src/connections/sources/catalog/cloud-apps/looker/index.md +++ b/src/connections/sources/catalog/cloud-apps/looker/index.md @@ -1,7 +1,7 @@ --- title: Looker Source +id: PhcJzMqz3Q --- - {% include content/source-region-unsupported.md %} Looker is a business intelligence software platform that helps you explore, analyze and share real-time business insights easily. Create custom cohorts of customers in Looker's powerful and flexible exploration tool and pass your analysis into your marketing tools for activation and engagement using the Looker Source in Segment. diff --git a/src/connections/sources/catalog/cloud-apps/mailchimp/index.md b/src/connections/sources/catalog/cloud-apps/mailchimp/index.md index 58f79c94f3..8c63e4e96a 100644 --- a/src/connections/sources/catalog/cloud-apps/mailchimp/index.md +++ b/src/connections/sources/catalog/cloud-apps/mailchimp/index.md @@ -1,7 +1,7 @@ --- title: Mailchimp Source +id: acd1bc21d --- - {% include content/source-region-unsupported.md %} ## Getting Started diff --git a/src/connections/sources/catalog/cloud-apps/mailjet/index.md b/src/connections/sources/catalog/cloud-apps/mailjet/index.md index f24cfafbfc..e264056223 100644 --- a/src/connections/sources/catalog/cloud-apps/mailjet/index.md +++ b/src/connections/sources/catalog/cloud-apps/mailjet/index.md @@ -1,7 +1,7 @@ --- title: 'Mailjet Source' +id: hWBbnJUp9G --- - {% include content/source-region-unsupported.md %} Mailjet is a powerful email service provider that enables you to send, deliver and track transactional and marketing emails all from one single account. With Mailjet, Marketers and Developers can send and track emails using API, User Interface or SMTP Relay. diff --git a/src/connections/sources/catalog/cloud-apps/mandrill/index.md b/src/connections/sources/catalog/cloud-apps/mandrill/index.md index 317a81758f..0f5780adc7 100644 --- a/src/connections/sources/catalog/cloud-apps/mandrill/index.md +++ b/src/connections/sources/catalog/cloud-apps/mandrill/index.md @@ -1,7 +1,7 @@ --- title: Mandrill Source +id: asdf76as89 --- - {% include content/source-region-unsupported.md %} [Mandrill](http://www.mandrill.com/) is a transactional email API for MailChimp users. diff --git a/src/connections/sources/catalog/cloud-apps/marketo/index.md b/src/connections/sources/catalog/cloud-apps/marketo/index.md index 79014cddd2..e643739fb9 100644 --- a/src/connections/sources/catalog/cloud-apps/marketo/index.md +++ b/src/connections/sources/catalog/cloud-apps/marketo/index.md @@ -4,6 +4,7 @@ rewrite: true source-type: object strat: adobe beta: true +id: VOXa199Bdm --- diff --git a/src/connections/sources/catalog/cloud-apps/mixpanel-cohorts/index.md b/src/connections/sources/catalog/cloud-apps/mixpanel-cohorts/index.md index f9a9033083..a816929fb0 100644 --- a/src/connections/sources/catalog/cloud-apps/mixpanel-cohorts/index.md +++ b/src/connections/sources/catalog/cloud-apps/mixpanel-cohorts/index.md @@ -2,8 +2,8 @@ title: 'Mixpanel Cohorts Source' redirect_from: - '/connections/sources/catalog/cloud-apps/mixpanel-cohorts-source/' +id: RxxzG3Dyva --- - {% include content/source-region-unsupported.md %} [Mixpanel Cohorts](https://help.mixpanel.com/hc/en-us/articles/115005708186-Cohorts-Overview-){:target="_blank} are groups of users defined by a set of criteria. The Mixpanel Cohorts Source allows you to export Cohorts of users from Mixpanel to Segment so that you can better target users across many downstream connections. You can sync Cohorts of users to your Segment-connected raw data warehouses and downstream destinations that accept Segment identify events. diff --git a/src/connections/sources/catalog/cloud-apps/moesif-api-analytics/index.md b/src/connections/sources/catalog/cloud-apps/moesif-api-analytics/index.md index f999e8568f..ae299e8603 100644 --- a/src/connections/sources/catalog/cloud-apps/moesif-api-analytics/index.md +++ b/src/connections/sources/catalog/cloud-apps/moesif-api-analytics/index.md @@ -1,7 +1,7 @@ --- title: Moesif API Analytics Source +id: tmy2gJdz77 --- - {% include content/source-region-unsupported.md %} [Moesif API Analytics](https://www.moesif.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps you drive API adoption, usage, and retention. With Moesif, track your customer journey from initial ad click to first API call while identifying at-risk customers struggling to integrate with your APIs. diff --git a/src/connections/sources/catalog/cloud-apps/nudgespot/index.md b/src/connections/sources/catalog/cloud-apps/nudgespot/index.md index f8d02360b4..7519797c92 100644 --- a/src/connections/sources/catalog/cloud-apps/nudgespot/index.md +++ b/src/connections/sources/catalog/cloud-apps/nudgespot/index.md @@ -1,7 +1,7 @@ --- title: 'Nudgespot Source' +id: 5GkpcyvNey --- - {% include content/source-region-unsupported.md %} Nudgespot is the easiest way to trigger emails, SMS, push notifications or in-app messages to your customers, at the right time. [Visit Website](http://www.nudgespot.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) diff --git a/src/connections/sources/catalog/cloud-apps/pendo/index.md b/src/connections/sources/catalog/cloud-apps/pendo/index.md index 67c51aca43..7f231daa00 100644 --- a/src/connections/sources/catalog/cloud-apps/pendo/index.md +++ b/src/connections/sources/catalog/cloud-apps/pendo/index.md @@ -1,7 +1,7 @@ --- title: Pendo Source +id: lWnQVj7Zo4 --- - {% include content/source-region-unsupported.md %} [Pendo](https://pendo.io) is a product cloud that helps product teams deliver software users love. With Pendo, product teams can understand product usage, collect feedback, measure NPS, onboard users, and announce new features in app—all without requiring engineering resources. diff --git a/src/connections/sources/catalog/cloud-apps/project/index.md b/src/connections/sources/catalog/cloud-apps/project/index.md index f97426b77e..67bfab2d93 100644 --- a/src/connections/sources/catalog/cloud-apps/project/index.md +++ b/src/connections/sources/catalog/cloud-apps/project/index.md @@ -1,6 +1,6 @@ --- title: 'Project Source' hidden: true +id: qqE6TuEDEM --- - \ No newline at end of file diff --git a/src/connections/sources/catalog/cloud-apps/provesource/index.md b/src/connections/sources/catalog/cloud-apps/provesource/index.md index 0625769218..165e7172be 100644 --- a/src/connections/sources/catalog/cloud-apps/provesource/index.md +++ b/src/connections/sources/catalog/cloud-apps/provesource/index.md @@ -1,8 +1,8 @@ --- title: ProveSource Source beta: true +id: aC11S74HWK --- - {% include content/source-region-unsupported.md %} [ProveSource](https://provesrc.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a social proof platform, that lets you show recent activities and reviews that happen on your website - signups, purchases, positive reviews and more, this helps build trust with your visitors and ultimately increases your conversions rates. diff --git a/src/connections/sources/catalog/cloud-apps/radar/index.md b/src/connections/sources/catalog/cloud-apps/radar/index.md index 96561777b0..088df299b0 100644 --- a/src/connections/sources/catalog/cloud-apps/radar/index.md +++ b/src/connections/sources/catalog/cloud-apps/radar/index.md @@ -1,7 +1,7 @@ --- title: Radar Source +id: bnpfpwKnhu --- - {% include content/source-region-unsupported.md %} [Radar](https://radar.com) is the leading geofencing and location tracking platform. You can use Radar SDKs and APIs to build a wide range of location-based product and service experiences, including pickup and delivery tracking, location-triggered notifications, location verification, store locators, address autocomplete, and more. diff --git a/src/connections/sources/catalog/cloud-apps/refiner/index.md b/src/connections/sources/catalog/cloud-apps/refiner/index.md index 49f009bec1..727dcd4a0b 100644 --- a/src/connections/sources/catalog/cloud-apps/refiner/index.md +++ b/src/connections/sources/catalog/cloud-apps/refiner/index.md @@ -1,8 +1,8 @@ --- title: Refiner Source source-type: event +id: 4pJ1eVPRnJ --- - {% include content/source-region-unsupported.md %} [Refiner](https://refiner.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a customer survey tool built specifically for SaaS, eCommerce and Membership sites. Ask your users any question while they are using your product with Refiner's beautiful and simple survey widgets - on brand and perfectly timed. diff --git a/src/connections/sources/catalog/cloud-apps/regal-voice/index.md b/src/connections/sources/catalog/cloud-apps/regal-voice/index.md index 2e9c2469ef..5d944c02e2 100644 --- a/src/connections/sources/catalog/cloud-apps/regal-voice/index.md +++ b/src/connections/sources/catalog/cloud-apps/regal-voice/index.md @@ -1,8 +1,8 @@ --- title: Regal Voice Source source-type: event +id: 1QTd6JKw53 --- - {% include content/source-region-unsupported.md %} [Regal Voice](https://regalvoice.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a next-gen customer engagement platform built for B2C services brands to proactively reach out to customers on voice and sms before they buy elsewhere. diff --git a/src/connections/sources/catalog/cloud-apps/salesforce-marketing-cloud/index.md b/src/connections/sources/catalog/cloud-apps/salesforce-marketing-cloud/index.md index 0e530d368a..43877a85cb 100644 --- a/src/connections/sources/catalog/cloud-apps/salesforce-marketing-cloud/index.md +++ b/src/connections/sources/catalog/cloud-apps/salesforce-marketing-cloud/index.md @@ -3,6 +3,7 @@ title: Salesforce Marketing Cloud Source beta: true source-type: object strat: salesforce +id: oQ5dZPW0Ii --- diff --git a/src/connections/sources/catalog/cloud-apps/salesforce/index.md b/src/connections/sources/catalog/cloud-apps/salesforce/index.md index 48267071f5..5b63954b21 100644 --- a/src/connections/sources/catalog/cloud-apps/salesforce/index.md +++ b/src/connections/sources/catalog/cloud-apps/salesforce/index.md @@ -1,8 +1,8 @@ --- title: Salesforce Source strat: salesforce +id: 2baks93n --- - {% include content/source-region-unsupported.md %} [Salesforce](http://salesforce.com){:target="_blank"} is a leader in on-demand customer relationship management. diff --git a/src/connections/sources/catalog/cloud-apps/selligent-marketing-cloud/index.md b/src/connections/sources/catalog/cloud-apps/selligent-marketing-cloud/index.md index bb892f4157..35cd6bed61 100644 --- a/src/connections/sources/catalog/cloud-apps/selligent-marketing-cloud/index.md +++ b/src/connections/sources/catalog/cloud-apps/selligent-marketing-cloud/index.md @@ -1,8 +1,8 @@ --- title: Selligent Marketing Cloud Source source-type: event +id: xn9YEaDaNS --- - {% include content/source-region-unsupported.md %} [Selligent Marketing Cloud](https://selligent.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) is a highly integrated, AI-powered omnichannel marketing automation platform which enables ambitious B2C marketers to maximize every moment of interaction with today’s connected consumers. Deliver ultra-personalized, highly relevant customer experiences across channels and devices, providing value swiftly and at scale. diff --git a/src/connections/sources/catalog/cloud-apps/sendgrid/index.md b/src/connections/sources/catalog/cloud-apps/sendgrid/index.md index 87dba41fdd..2feacd9465 100644 --- a/src/connections/sources/catalog/cloud-apps/sendgrid/index.md +++ b/src/connections/sources/catalog/cloud-apps/sendgrid/index.md @@ -1,7 +1,7 @@ --- title: Sendgrid Source +id: jhr8dT2yHn --- - {% include content/source-region-unsupported.md %} SendGrid is a trusted platform for transactional email and email marketing. [Visit Website](http://sendgrid.com) diff --git a/src/connections/sources/catalog/cloud-apps/stripe/index.md b/src/connections/sources/catalog/cloud-apps/stripe/index.md index 27c1984c51..7652eb48cc 100644 --- a/src/connections/sources/catalog/cloud-apps/stripe/index.md +++ b/src/connections/sources/catalog/cloud-apps/stripe/index.md @@ -1,8 +1,8 @@ --- title: Stripe Source rewrite: true +id: 1bow82lmk --- - {% include content/source-region-unsupported.md %} [Stripe](https://stripe.com/about) builds economic infrastructure for the internet, that enables businesses of every size to accept payments and manage their businesses online. diff --git a/src/connections/sources/catalog/cloud-apps/twilio-event-streams-beta/index.md b/src/connections/sources/catalog/cloud-apps/twilio-event-streams-beta/index.md index 4ed8d61a2c..19a895306f 100644 --- a/src/connections/sources/catalog/cloud-apps/twilio-event-streams-beta/index.md +++ b/src/connections/sources/catalog/cloud-apps/twilio-event-streams-beta/index.md @@ -1,6 +1,6 @@ --- title: Twilio Event Streams (Beta) hidden: true +id: lWMazCg4rS --- - {% include content/source-region-unsupported.md %} diff --git a/src/connections/sources/catalog/cloud-apps/twilio/index.md b/src/connections/sources/catalog/cloud-apps/twilio/index.md index d819601178..0c4baee5ac 100644 --- a/src/connections/sources/catalog/cloud-apps/twilio/index.md +++ b/src/connections/sources/catalog/cloud-apps/twilio/index.md @@ -1,8 +1,8 @@ --- title: Twilio Source rewrite: true +id: 43bb279b7 --- - {% include content/source-region-unsupported.md %} [Twilio](http://twilio.com) is a developer platform for communications. Software teams use Twilio APIs to add capabilities like voice, video, and messaging to their applications. This enables businesses to provide the right communications experience for their customers. Behind Twilio APIs is a Super Network, a software layer that connects and optimizes communications networks around the world. This is what allows users to reliably call and message anyone anywhere. diff --git a/src/connections/sources/catalog/cloud-apps/vero/index.md b/src/connections/sources/catalog/cloud-apps/vero/index.md index 23434f5ae9..55f2cc1daa 100644 --- a/src/connections/sources/catalog/cloud-apps/vero/index.md +++ b/src/connections/sources/catalog/cloud-apps/vero/index.md @@ -1,7 +1,7 @@ --- title: 'Vero Source' +id: FOkpxVzfJJ --- - {% include content/source-region-unsupported.md %} Vero is an email marketing tool that lets you set up automated emails to your users that get sent after they've completed certain actions. [Visit Website](http://getvero.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) diff --git a/src/connections/sources/catalog/cloud-apps/youbora/index.md b/src/connections/sources/catalog/cloud-apps/youbora/index.md index 04eed1f231..f6758239dc 100644 --- a/src/connections/sources/catalog/cloud-apps/youbora/index.md +++ b/src/connections/sources/catalog/cloud-apps/youbora/index.md @@ -2,8 +2,8 @@ title: Youbora Source beta: true hidden: true +id: 117eYCe9jH --- - {% include content/source-region-unsupported.md %} YOUBORA is the most advanced and holistic suite of integrated video analytics and business intelligence for broadcasters, OTTs, telcos and media companies to help you make data-driven, business, operational and technical decisions to drive performance and maximize revenue across your entire video service. The latest version of YOUBORA has been thought through from the ground up to deliver the most detailed intelligence for your service. diff --git a/src/connections/sources/catalog/cloud-apps/zendesk/index.md b/src/connections/sources/catalog/cloud-apps/zendesk/index.md index b73ef03c02..6b5564c709 100644 --- a/src/connections/sources/catalog/cloud-apps/zendesk/index.md +++ b/src/connections/sources/catalog/cloud-apps/zendesk/index.md @@ -1,7 +1,7 @@ --- title: Zendesk Source +id: 3hbak7a9 --- - {% include content/source-region-unsupported.md %} [Zendesk](https://www.zendesk.com/) is a customer service platform for enterprises, which provides a customer support platform that allows quicker and easier interaction between businesses and customers. diff --git a/src/connections/sources/catalog/libraries/mobile/android/index.md b/src/connections/sources/catalog/libraries/mobile/android/index.md index 686dcf443c..f434a3d27e 100644 --- a/src/connections/sources/catalog/libraries/mobile/android/index.md +++ b/src/connections/sources/catalog/libraries/mobile/android/index.md @@ -2,9 +2,8 @@ title: 'Analytics for Android' strat: android repo: analytics-android +id: wXNairW5xX --- - - Analytics for Android makes it simple to send your data to any tool without having to learn, test or implement a new API every time. diff --git a/src/connections/sources/catalog/libraries/mobile/ios/index.md b/src/connections/sources/catalog/libraries/mobile/ios/index.md index c593f20889..fed3077001 100644 --- a/src/connections/sources/catalog/libraries/mobile/ios/index.md +++ b/src/connections/sources/catalog/libraries/mobile/ios/index.md @@ -2,9 +2,8 @@ title: Analytics for iOS strat: ios repo: analytics-ios +id: UBrsG9RVzw --- - - With Analytics for iOS, you can send your data to analytics or marketing tool, without needing to learn, test, or implement a new API with each update or addition.

diff --git a/src/connections/sources/catalog/libraries/mobile/kotlin-android/index.md b/src/connections/sources/catalog/libraries/mobile/kotlin-android/index.md index 97947c453a..db439f32b5 100644 --- a/src/connections/sources/catalog/libraries/mobile/kotlin-android/index.md +++ b/src/connections/sources/catalog/libraries/mobile/kotlin-android/index.md @@ -3,8 +3,8 @@ title: Analytics for Kotlin (Android) strat: kotlin redirect_from: - '/connections/sources/catalog/cloud-apps/kotlin-android/' +id: 9EMcTqiKok --- - With Analytics-Kotlin, you can send data using Kotlin applications to any analytics or marketing tool without having to learn, test, or implement a new API every time. Analytics-Kotlin enables you to process and track the history of a payload, while Segment controls the API and prevents unintended operations. > info "" diff --git a/src/connections/sources/catalog/libraries/mobile/react-native/index.md b/src/connections/sources/catalog/libraries/mobile/react-native/index.md index 16ea9b2a56..6c741162e5 100644 --- a/src/connections/sources/catalog/libraries/mobile/react-native/index.md +++ b/src/connections/sources/catalog/libraries/mobile/react-native/index.md @@ -2,8 +2,8 @@ title: Analytics for React Native strat: react-native repo: analytics-react-native +id: B0X0QmvMny --- - > info "Analytics for React Native 2.0 in Public Beta" > Analytics for React Native 2.0 is available in public beta and is governed by Segment's [First-Access and Beta terms](https://segment.com/legal/first-access-beta-preview/){:target="_blank"}. For more information, see the [Analytics for React Native 2.0 GitHub repository](https://github.com/segmentio/analytics-react-native){:target="_blank"}. diff --git a/src/connections/sources/catalog/libraries/mobile/swift-ios/index.md b/src/connections/sources/catalog/libraries/mobile/swift-ios/index.md index 6845f11087..9c14d8ef5c 100644 --- a/src/connections/sources/catalog/libraries/mobile/swift-ios/index.md +++ b/src/connections/sources/catalog/libraries/mobile/swift-ios/index.md @@ -3,8 +3,8 @@ title: 'Analytics for Swift' strat: swift redirect_from: - '/connections/sources/catalog/cloud-apps/swift/' +id: dZeHygTSD4 --- - With Analytics-Swift, you can send data from iOS, tvOS, iPadOS, WatchOS, macOS and Linux applications to any analytics or marketing tool without having to learn, test, or implement a new API every time. Analytics-Swift enables you to process and track the history of a payload, while Segment controls the API and prevents unintended operations. Analytics-Swift also offers default implementations to help you maintain destinations and integrations. > info "" diff --git a/src/connections/sources/catalog/libraries/mobile/xamarin/index.md b/src/connections/sources/catalog/libraries/mobile/xamarin/index.md index fee1e6ba96..8c0601c2d2 100644 --- a/src/connections/sources/catalog/libraries/mobile/xamarin/index.md +++ b/src/connections/sources/catalog/libraries/mobile/xamarin/index.md @@ -2,8 +2,8 @@ title: Analytics for Xamarin sourceTitle: 'Xamarin' sourceCategory: 'Mobile' +id: wcssVcPJrc --- - Our [Xamarin](http://xamarin.com/) Portable Class Library ([PCL](http://developer.xamarin.com/guides/cross-platform/application_fundamentals/pcl/)) is the best way to integrate analytics into your Xamarin application. It lets you record analytics data from your C#, F#, and .NET code, and supports `PCL Profile 4.0 - Profile136`, which targets the following platforms: - .NET Framework 4 or later diff --git a/src/connections/sources/catalog/libraries/ott/roku/index.md b/src/connections/sources/catalog/libraries/ott/roku/index.md index 09d4a80a5a..004022e639 100644 --- a/src/connections/sources/catalog/libraries/ott/roku/index.md +++ b/src/connections/sources/catalog/libraries/ott/roku/index.md @@ -1,8 +1,8 @@ --- title: Analytics for Roku sourceTitle: 'Roku' +id: BbupS2SB0b --- - The Segment Roku SDK makes it easy to send data to Segment from any Roku enabled device. This library is open-source, so you can [check it out on GitHub](https://github.com/segmentio/analytics-roku). **NOTE:** The Roku SDK is currently in alpha. We recommend using this version for development, test or QA builds. diff --git a/src/connections/sources/catalog/libraries/server/clojure/index.md b/src/connections/sources/catalog/libraries/server/clojure/index.md index d30faf1ea8..e206a32498 100644 --- a/src/connections/sources/catalog/libraries/server/clojure/index.md +++ b/src/connections/sources/catalog/libraries/server/clojure/index.md @@ -3,8 +3,8 @@ title: Analytics for Clojure sourceTitle: 'Clojure' sourceCategory: 'Server' shortName: 'clojure' +id: B6L7qzHmhI --- - The clojure library lets you record analytics data from your clojure code. The requests hit our servers, and then we route your data to any analytics service you enable on your destinations page. The library is open-source and was contributed by the very awesome [CircleCI](https://circleci.com/), thanks! You can [check it out on GitHub](https://github.com/circleci/analytics-clj). The clojure library is a wrapper around our [Java library](https://github.com/segmentio/analytics-java). diff --git a/src/connections/sources/catalog/libraries/server/go/index.md b/src/connections/sources/catalog/libraries/server/go/index.md index c2a6a39035..e35dc431be 100644 --- a/src/connections/sources/catalog/libraries/server/go/index.md +++ b/src/connections/sources/catalog/libraries/server/go/index.md @@ -3,9 +3,8 @@ title: Analytics for Go sourceTitle: 'Go' sourceCategory: 'Server' repo: analytics-go +id: yBvi77aEwr --- - - Our Go library lets you record analytics data from your Go code. The requests hit our servers, and then we route your data to any analytics service you enable on your destinations page. This library is open-source, so you can [check it out on GitHub](https://github.com/segmentio/analytics-go). diff --git a/src/connections/sources/catalog/libraries/server/http-api/index.md b/src/connections/sources/catalog/libraries/server/http-api/index.md index a65a23e572..1de0ae9d60 100644 --- a/src/connections/sources/catalog/libraries/server/http-api/index.md +++ b/src/connections/sources/catalog/libraries/server/http-api/index.md @@ -1,8 +1,8 @@ --- title: HTTP Tracking API Source redirect_from: '/connections/sources/catalog/libraries/server/http/' +id: iUM16Md8P2 --- - The Segment HTTP Tracking API lets you record analytics data from any website or application. The requests hit our servers, and we route your data to any destination you want! Segment has native [sources](/docs/connections/sources/) for most use cases (Javascript, iOS, etc.) that are all built for high-performance and are open-source. But sometimes you may want to send to the HTTP API directly—that's what this reference is for. diff --git a/src/connections/sources/catalog/libraries/server/java/index.md b/src/connections/sources/catalog/libraries/server/java/index.md index 6fe140d5fe..7bdee1de35 100644 --- a/src/connections/sources/catalog/libraries/server/java/index.md +++ b/src/connections/sources/catalog/libraries/server/java/index.md @@ -1,8 +1,8 @@ --- title: Analytics for Java repo: analytics-java +id: V6ynUvQgbc --- - [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.segment.analytics.java/analytics/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.segment.analytics.java/analytics) Our Java library lets you record analytics data from your Java code. The requests hit our servers, and then we route your data to any analytics service you enable on your destinations page. diff --git a/src/connections/sources/catalog/libraries/server/kotlin/index.md b/src/connections/sources/catalog/libraries/server/kotlin/index.md index 8be45dc6a5..2657e34943 100644 --- a/src/connections/sources/catalog/libraries/server/kotlin/index.md +++ b/src/connections/sources/catalog/libraries/server/kotlin/index.md @@ -2,8 +2,8 @@ title: Analytics for Kotlin (Server) redirect_from: - '/connections/sources/catalog/cloud-apps/kotlin/' +id: yMu7LRR59b --- - With Analytics-Kotlin, you can send data using Kotlin applications to any analytics or marketing tool without having to learn, test, or implement a new API every time. Analytics-Kotlin enables you to process and track the history of a payload, while Segment controls the API and prevents unintended operations. > info "" diff --git a/src/connections/sources/catalog/libraries/server/net/index.md b/src/connections/sources/catalog/libraries/server/net/index.md index f1641b7ec8..195a231e11 100644 --- a/src/connections/sources/catalog/libraries/server/net/index.md +++ b/src/connections/sources/catalog/libraries/server/net/index.md @@ -1,8 +1,8 @@ --- title: Analytics for .NET repo: analytics.NET +id: 8HWbgPTt3k --- - Our .NET library is the best way to integrate analytics into your .NET application or website. It lets you record analytics data from your ASP.NET, C#, F#, and Visual Basic code. The library issues requests that hit our servers, and then we route your data to any analytics service you enable on our destinations page. This library is open-source, so you can [check it out on GitHub](https://github.com/segmentio/Analytics.NET). All of Segment's server-side libraries are built for high-performance, so you can use them in your web server controller code. This library uses an internal queue to make `identify` and `track` calls non-blocking and fast. It also batches messages and flushes asynchronously to our servers. diff --git a/src/connections/sources/catalog/libraries/server/php/index.md b/src/connections/sources/catalog/libraries/server/php/index.md index b821b6b1ee..21d30161b8 100644 --- a/src/connections/sources/catalog/libraries/server/php/index.md +++ b/src/connections/sources/catalog/libraries/server/php/index.md @@ -1,8 +1,8 @@ --- title: Analytics for PHP repo: analytics-php +id: TDO70If4mD --- - Our PHP library lets you record analytics data from your PHP code. The requests hit our servers, and then we route your data to any analytics service you enable on your destinations page. This library is open-source, so you can [check it out on GitHub](https://github.com/segmentio/analytics-php). diff --git a/src/connections/sources/catalog/libraries/server/pixel-tracking-api/index.md b/src/connections/sources/catalog/libraries/server/pixel-tracking-api/index.md index c9b9ebc5ad..bc366fc073 100644 --- a/src/connections/sources/catalog/libraries/server/pixel-tracking-api/index.md +++ b/src/connections/sources/catalog/libraries/server/pixel-tracking-api/index.md @@ -1,7 +1,7 @@ --- title: Tracking Pixel API +id: 7XqN9rJQOG --- - Tracking pixels (aka beacon, 1×1 gif, or clear gif) allow for tracking email opens, advertising impressions and checkout pages where JavaScript and POST requests are disallowed, but where you _can_ embed an image. Follow Segment's [HTTP Tracking API](/docs/connections/sources/catalog/libraries/server/http) to use the `/pixel` API endpoint, which accepts base64 encoded url `?data` and returns an 1x1 transparent gif. diff --git a/src/connections/sources/catalog/libraries/server/python/index.md b/src/connections/sources/catalog/libraries/server/python/index.md index 9ac8abeb28..72c422140e 100644 --- a/src/connections/sources/catalog/libraries/server/python/index.md +++ b/src/connections/sources/catalog/libraries/server/python/index.md @@ -1,7 +1,7 @@ --- title: Analytics for Python +id: XRksQPCr7X --- - Our Python library lets you record analytics data from your Python code. The requests hit our servers, and then we route your data to any analytics service you enable on your destinations page. This library is open-source, so you can [check it out on GitHub](https://github.com/segmentio/analytics-python). diff --git a/src/connections/sources/catalog/libraries/server/ruby/index.md b/src/connections/sources/catalog/libraries/server/ruby/index.md index a254a0679a..ed60622d93 100644 --- a/src/connections/sources/catalog/libraries/server/ruby/index.md +++ b/src/connections/sources/catalog/libraries/server/ruby/index.md @@ -2,8 +2,8 @@ title: Analytics for Ruby sourceTitle: 'Ruby' sourceCategory: 'Server' +id: aACTBqIbWT --- - Our Ruby library lets you record analytics data from your ruby code. The requests hit our servers, and then we route your data to any analytics service you enable on your destinations page. This library is open-source, so you can [check it out on GitHub](https://github.com/segmentio/analytics-ruby). diff --git a/src/connections/sources/catalog/libraries/website/javascript/index.md b/src/connections/sources/catalog/libraries/website/javascript/index.md index 4e0e4929c8..b7d6a68d5a 100644 --- a/src/connections/sources/catalog/libraries/website/javascript/index.md +++ b/src/connections/sources/catalog/libraries/website/javascript/index.md @@ -6,8 +6,8 @@ redirect_from: - '/sources/website/analytics.js/' - '/connections/sources/catalog/libraries/website/javascript/analytics-js-2/' strat: ajs +id: IqDTy1TpoU --- - Analytics.js 2.0, the latest version of Segment's JavaScript source, enables you to send your data to any tool without having to learn, test, or use a new API every time. > note "" diff --git a/src/connections/sources/catalog/libraries/website/shopify-littledata/index.md b/src/connections/sources/catalog/libraries/website/shopify-littledata/index.md index 586f0e91e5..dac01e8901 100644 --- a/src/connections/sources/catalog/libraries/website/shopify-littledata/index.md +++ b/src/connections/sources/catalog/libraries/website/shopify-littledata/index.md @@ -2,8 +2,8 @@ title: Shopify by Littledata Source redirect_from: - "/connections/sources/catalog/cloud-apps/shopify-littledata/" +id: V8ji9rWzoS --- - Littledata's [Shopify to Segment connection](https://blog.littledata.io/help/posts/segment-overview/){:target="_blank"} uses a combination of client-side (browser) and server-side tracking to ensure 100% accurate data about your Shopify store in Segment. Littledata automatically integrates with Shopify and Shopify Plus sites to capture every customer touchpoint, including sales, marketing, customer and product performance data. From 693c6b3748c6512fc9afb1d54b0e202201d6103c Mon Sep 17 00:00:00 2001 From: kdaswani <49517136+kdaswani@users.noreply.github.com> Date: Mon, 7 Mar 2022 16:12:22 -0800 Subject: [PATCH 3/6] StratConn GA Launch Docs Updates (#2566) * StratConn GA Launch Docs Updates * Update src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md * Update src/connections/destinations/catalog/facebook-pixel-server-side/index.md * Update src/connections/destinations/catalog/tiktok-conversions/index.md * Update src/connections/destinations/catalog/tiktok-conversions/index.md * Update src/connections/destinations/catalog/tiktok-conversions/index.md * Apply suggestions from code review Co-authored-by: rchinn-segment <93161299+rchinn-segment@users.noreply.github.com> * Add to tiktok doc * Update src/connections/destinations/catalog/tiktok-conversions/index.md Co-authored-by: Kiara Daswani Co-authored-by: rchinn-segment <93161299+rchinn-segment@users.noreply.github.com> Co-authored-by: markzegarelli --- .../actions-facebook-conversions-api/index.md | 37 +++++----- .../actions-google-analytics-4/index.md | 4 - .../index.md | 54 +------------- .../catalog/facebook-app-events/index.md | 3 +- .../facebook-offline-conversions/index.md | 14 ++-- .../facebook-pixel-server-side/index.md | 9 +-- .../catalog/facebook-pixel/index.md | 14 ++-- .../index.md | 14 ++-- .../catalog/tiktok-conversions/index.md | 74 +++++++++++-------- 9 files changed, 90 insertions(+), 133 deletions(-) diff --git a/src/connections/destinations/catalog/actions-facebook-conversions-api/index.md b/src/connections/destinations/catalog/actions-facebook-conversions-api/index.md index e7390ac3c4..55709ef79a 100644 --- a/src/connections/destinations/catalog/actions-facebook-conversions-api/index.md +++ b/src/connections/destinations/catalog/actions-facebook-conversions-api/index.md @@ -7,12 +7,6 @@ hide-dossier: false Facebook Conversions API (Actions) enables advertisers to send events from their servers directly to Facebook. Server-side events link to Facebook Pixel events, and process like browser pixel events. This means that server-side events are used in measurement, reporting, and optimization, just like browser pixel events. -> info "" -> This document is about a feature which is in beta. This means that the Facebook Conversions API (Actions) destination is in active development, and some functionality may change before it becomes generally available. - -> success "" -> **Good to know**: This page is about the [Actions-framework](/docs/connections/destinations/actions/) Facebook Conversions API Segment destination. There's also a page about the [non-Actions Facebook Conversions API destination](/docs/connections/destinations/catalog/facebook-pixel-server-side/). Both of these destinations receive data _from_ Segment. - ## Benefits of Facebook Conversions API (Actions) vs Facebook Conversions API Classic The Facebook Conversions API (Actions) destination provides the following benefits over the classic Facebook Conversions API destination: @@ -24,6 +18,18 @@ The Facebook Conversions API (Actions) destination provides the following benefi - **Support for multi-product arrays**. Product data nested within arrays, like the `products` array in the [Order Completed](/docs/connections/spec/ecommerce/v2/#order-completed) event, can be sent to Facebook. - **Data normalization**. Data is normalized before it is hashed to ensure the hashed value matches Facebook Pixel (browser). +## Other Facebook Destinations Supported by Segment +This page is about the **Facebook Conversions API**. For documentation on other Facebook destinations, see the pages linked below. + +| **Facebook Destination** | Supported by Personas | +| ----------------------------------------------------------------------------------------------------------- | --------------------- | +| **[Facebook App Events](/docs/connections/destinations/catalog/facebook-app-events/)** | Yes | +| **[Facebook Offline Conversions](/docs/connections/destinations/catalog/facebook-offline-conversions/)** | Yes | +| **[Facebook Pixel](/docs/connections/destinations/catalog/facebook-pixel/)** | No | +| **[Facebook Custom Audiences](/docs/connections/destinations/catalog/personas-facebook-custom-audiences/)** | Yes | +| **[Facebook Conversions API](/docs/connections/destinations/catalog/actions-facebook-conversions-api/)** | Yes | + + ## Getting started Set up your Pixel to work with the Facebook Conversions API (Actions) destination. You can use an existing Facebook Pixel that you already have set up, or create a new one. @@ -55,15 +61,6 @@ Set up your Pixel to work with the Facebook Conversions API (Actions) destinatio {% include components/actions-fields.html %} -## Server Event Parameter Requirements - -Facebook requires the `action_source` server event parameter for all events sent to the Conversions API. This parameter is used to specify where the conversions occurred. If `action_source` is set to 'website' then the `client_user_agent` and the `event_source_url` parameters are also required. Events sent to the Conversions API that do not meet the requirements may not be available for optimization, targeting, or measurement. - -| Server Event Parameter | Requirement | Implementation p | -| ---------------------- | ------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| `action_source` | Always required | It is set automatically but it can be set manually. | -| `client_user_agent` | Only required if `action_source` = "website" | It must be set manually if using a server library. It is set automatically if using the Segment web library. | -| `event_source_url` | Only required if `action_source` = "website" | It must be set manually if using a server library. It is set automatically if using the Segment web library. | ## Configuration options The Facebook Conversions API (Actions) destination gives you several ways to implement your conversion tracking. You can use it with [Facebook Pixel](/docs/connections/destinations/catalog/facebook-pixel/), or as a stand-alone alternative. You can read more about implementation options below and in [Facebook documentation](https://developers.facebook.com/docs/marketing-api/conversions-api/guides/end-to-end-implementation#pick-your-integration-type){:target="_blank"}. @@ -81,7 +78,7 @@ With the Facebook Conversions API (Actions) destination, you can choose any fiel ![the coalesce function](images/image1.png) -You can send additional User Data to increase the match rate for events from a server source. Collect other fields from the browser, like User Agent, IP Address, and [Facebook's cookie parameters (fbp, fbc)](https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/fbp-and-fbc){:target="_blank"}, pass them to the server, and map them in the User Data object. See [Facebook's Customer Information Parameters](https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/customer-information-parameters) for more information on User Data fields. +You can send additional User Data to increase the match rate for events from a server source. Collect other fields from the browser, like User Agent, IP Address, and [Facebook's cookie parameters (fbp, fbc)](https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/fbp-and-fbc){:target="_blank"}, pass them to the server, and map them in the User Data object. See [Facebook's Customer Information Parameters](https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/customer-information-parameters){:target="_blank"} for more information on User Data fields, and [Facebook’s Best Practices for Conversions API](https://www.facebook.com/business/help/308855623839366?id=818859032317965){:target="_blank"} for match rate best practices. ![the user data object](images/image2.png) @@ -105,7 +102,7 @@ With the Facebook Conversions API (Actions) destination, you can choose any fiel ![the coalesce function](images/image1.png) -You can send additional User Data to increase the match rate for events from a server source. Collect other fields from the browser, like User Agent, IP Address, and [Facebook's cookie parameters (fbp, fbc)](https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/fbp-and-fbc){:target="_blank"}, pass them to the server, and map them in the User Data object. See [Facebook's Customer Information Parameters](https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/customer-information-parameters) for more information on User Data fields. +You can send additional User Data to increase the match rate for events from a server source. Collect other fields from the browser, like User Agent, IP Address, and [Facebook's cookie parameters (fbp, fbc)](https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/fbp-and-fbc){:target="_blank"}, pass them to the server, and map them in the User Data object. See [Facebook's Customer Information Parameters](https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/customer-information-parameters){:target="_blank"} for more information on User Data fields, and [Facebook’s Best Practices for Conversions API](https://www.facebook.com/business/help/308855623839366?id=818859032317965){:target="_blank"} for match rate best practices. ![the user data object](images/image2.png) @@ -135,7 +132,7 @@ If you want to send a [Facebook standard event](https://developers.facebook.com/ ### PII Hashing -Segment creates a SHA-256 hash of the following fields: +Segment creates a SHA-256 hash of the following fields before sending to Facebook: - External ID - Email - Phone @@ -150,6 +147,10 @@ Segment creates a SHA-256 hash of the following fields: If you use Facebook Pixel, the Pixel library also hashes the External ID. This means External IDs will match across Facebook Pixel and Facebook Conversions API if they use the External ID for [deduplication](https://developers.facebook.com/docs/marketing-api/conversions-api/deduplicate-pixel-and-server-events/#fbp-or-external-id){:target="_blank"}. +### Server Event Parameter Requirements + +Facebook requires the `action_source` server event parameter for all events sent to the Facebook Conversions API. This parameter specifies where the conversions occur. If `action_source` is set to **website**, then the `client_user_agent` and the `event_source_url` parameters are also required. Events sent to the Conversions API that don't meet the requirements may not be available for optimization, targeting, or measurement. + ### Verify Events in Facebook After you start sending events, you should start seeing them in twenty minutes. You can confirm that Facebook received them: diff --git a/src/connections/destinations/catalog/actions-google-analytics-4/index.md b/src/connections/destinations/catalog/actions-google-analytics-4/index.md index ab07082109..6d5ef872dc 100644 --- a/src/connections/destinations/catalog/actions-google-analytics-4/index.md +++ b/src/connections/destinations/catalog/actions-google-analytics-4/index.md @@ -9,10 +9,6 @@ hide-dossier: false When you have Segment installed, you can use your existing tracking implementation to fulfill your data collection needs with Google Analytics 4. Segment will send your data server-side to [Google's Measurement Protocol API](https://developers.google.com/analytics/devguides/collection/protocol/ga4). -> info "" -> This document is about a feature which is in beta. This means that the Destination Actions are in active development, and some functionality may change before it becomes generally available - - > success "" > **Good to know**: This page is about the [Actions-framework](/docs/connections/destinations/actions/) Google Analytics 4 destination. There's also a page about the [non-Actions Google Universal Analytics destination](/docs/connections/destinations/catalog/google-analytics/). Both of these destinations receive data _from_ Segment. diff --git a/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md b/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md index d21509bf91..7001939e65 100644 --- a/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md +++ b/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md @@ -5,18 +5,12 @@ hide-boilerplate: true hide-dossier: false --- -> info "" -> This document is about a feature that is in beta. This means that the destination is in active development, and some functionality may change before it becomes generally available. - -> success "" -> **Good to know**: This page is about the [Actions-framework](/docs/connections/destinations/actions/) Google Enhanced Conversions Segment destination. - The Google Enhanced Conversions destination enables you to improve the accuracy of your conversion measurement. You can supplement existing conversion tags by sending first-party customer conversion data from your website, such as email address, to Google Ads. Segment hashes this data and sends it in a privacy-safe way. Google matches hashed data with signed-in Google accounts to attribute the conversion to ad events, such as clicks or views. To learn more about Google Enhanced Conversions, see Google's documentation [About enhanced conversions](https://support.google.com/google-ads/answer/9888656?hl=en-GB){:target="_blank"}. > warning "Before you begin" > Enable Enhanced Conversions in your Google Ads account. For each Conversion, specify in the settings that you will use the Enhanced Conversions API: > 1. When you log in to Google Ads, make sure you are in [Expert Mode](https://support.google.com/google-ads/answer/9520605?hl=en){:target="_blank"}. -> 2. Click **Tools & Settings** in the top bar, and select **Conversions** from the dropdown. Select the **Conversion Action** you want Segment to log to. +> 2. Click **Tools & Settings** in the top bar, and select **Conversions** from the dropdown. Select the website **Conversion Action** you want Segment to log to. > 3. Expand the tab for **Enhanced conversions**. Enable **Turn on enhanced conversions**. Under "To start, select how you want to set up enhanced conversions", select **API**. > > When you authenticate your Segment workspace with your Google Account, use a Google Account that is a member of your Google Ads account. @@ -26,52 +20,12 @@ The Google Enhanced Conversions destination enables you to improve the accuracy 2. Search for “Google Enhanced Conversions” in the Destinations Catalog, and select the destination. 3. Click **Configure Google Enhanced Conversions** in the top-right corner of the screen. 4. Select the source that will send data to Google Enhanced Conversions and follow the steps to name your destination. -5. On the **Settings** tab, enter the Conversion ID and click **Save**. Find the Conversion ID in your Google Ads account using the instructions in the article [Google Ads conversions](https://support.google.com/tagmanager/answer/6105160?hl=en){:target="_blank"}. When you log in to Google Ads, enable [Expert Mode](https://support.google.com/google-ads/answer/9520605?hl=en){:target="_blank"}. You'll follow these same instructions to get the Conversion Label, which you'll need when you set up your first Mapping, below. +5. On the **Settings** tab, enter the Conversion ID and click **Save**. Find the Conversion ID in your Google Ads account using the instructions in the article [Google Ads conversions](https://support.google.com/tagmanager/answer/6105160?hl=en){:target="_blank"}. You'll follow these same instructions to get the Conversion Label, which you'll need when you set up your first Mapping. 6. On the **Settings** tab, authenticate with Google using OAuth. Click **Connect to Google Enhanced Conversions**. Follow the prompts to authenticate using OAuth, with a Google login that is a member of the Google Ads account with Enhanced Conversions enabled. 7. Follow the steps in the Destinations Actions documentation on [Customizing mappings](/docs/connections/destinations/actions/#customizing-mappings). - -{% capture conv_label %} -#### Find the Conversions Label -Enter the Conversion Label. Find the Conversion Label using the instructions in the article [Google Ads conversions](https://support.google.com/tagmanager/answer/6105160?hl=en){:target="_blank"}. -{% endcapture %} - -{% capture test_mapping %} -#### Test the Mapping -To test your mapping: -1. Expand the **Test event trigger** section. Segment searches for recent events that match the trigger conditions. If there are no recent events that match the criteria, click **manually enter an event**, and replace the default event data with the following: -```json -{ - "messageId": "segment-test-message-hkz2b", - "timestamp": "2021-08-27T17:32:12.781Z", - "context" : { - "userAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" - }, - "type": "track", - "properties": { - "email": "test@example.org", - "orderId": "123", - "firstName": "Bob John", - "lastName": "Smith", - "phone": "14150000000", - "address": { - "street": "123 Market Street", - "city": "San Francisco", - "state": "CA", - "postalCode": "94000", - "country": "USA" - } - }, - "userId": "test-user-j75yud", - "event": "Order Completed" -} -``` -8. Click **Test Event**. -9. Scroll down and expand the **Send a test event** section, and click **Test Action**. -10. The section displays the test result and the payload that Google Enhanced Conversions returns to Segment. -11. Click **Save**. -12. Enable the Mapping with the toggle under the **Status** column. -{% endcapture %} +> info +> The Conversion ID is a global setting because it's an account-level ID that's the same for all conversion actions in your Google Ads account. The Conversion Label is unique to each conversion action and is therefore configured per Mapping. {% include components/actions-fields.html content1=conv_label section1="postConversion" content2=test_mapping section2="postConversion" %} diff --git a/src/connections/destinations/catalog/facebook-app-events/index.md b/src/connections/destinations/catalog/facebook-app-events/index.md index a340b980d6..9ba61ffbb2 100644 --- a/src/connections/destinations/catalog/facebook-app-events/index.md +++ b/src/connections/destinations/catalog/facebook-app-events/index.md @@ -16,8 +16,7 @@ This page is about the **Facebook App Events**. For documentation on other Faceb | **[Facebook Offline Conversions](/docs/connections/destinations/catalog/facebook-offline-conversions/)** | Yes | | **[Facebook Pixel](/docs/connections/destinations/catalog/facebook-pixel/)** | No | | **[Facebook Custom Audiences](/docs/connections/destinations/catalog/personas-facebook-custom-audiences/)** | Yes | -| **Facebook Custom Audiences Website** | Yes | - +| **[Facebook Conversions API](/docs/connections/destinations/catalog/actions-facebook-conversions-api/)** | Yes | ## Getting Started diff --git a/src/connections/destinations/catalog/facebook-offline-conversions/index.md b/src/connections/destinations/catalog/facebook-offline-conversions/index.md index fd7ca79e54..1d1ee9da3e 100644 --- a/src/connections/destinations/catalog/facebook-offline-conversions/index.md +++ b/src/connections/destinations/catalog/facebook-offline-conversions/index.md @@ -10,13 +10,13 @@ strat: facebook ## Other Facebook Destinations Supported by Segment This page is about the **Facebook Offline Conversions**. For documentation on other Facebook destinations, see the pages linked below. -| **Facebook Destination** | Supported by Personas | -| ---------------------- | --------------------- | -| **[Facebook App Events](/docs/connections/destinations/catalog/facebook-app-events/)** | Yes | -| **[Facebook Offline Conversions](/docs/connections/destinations/catalog/facebook-offline-conversions/)** | Yes | -| **[Facebook Pixel](/docs/connections/destinations/catalog/facebook-pixel/)** | No | -| **[Facebook Custom Audiences](/docs/connections/destinations/catalog/personas-facebook-custom-audiences/)** | Yes | -| **Facebook Custom Audiences Website** | Yes | +| **Facebook Destination** | Supported by Personas | +| ----------------------------------------------------------------------------------------------------------- | --------------------- | +| **[Facebook App Events](/docs/connections/destinations/catalog/facebook-app-events/)** | Yes | +| **[Facebook Offline Conversions](/docs/connections/destinations/catalog/facebook-offline-conversions/)** | Yes | +| **[Facebook Pixel](/docs/connections/destinations/catalog/facebook-pixel/)** | No | +| **[Facebook Custom Audiences](/docs/connections/destinations/catalog/personas-facebook-custom-audiences/)** | Yes | +| **[Facebook Conversions API](/docs/connections/destinations/catalog/actions-facebook-conversions-api/)** | Yes | ## Getting Started diff --git a/src/connections/destinations/catalog/facebook-pixel-server-side/index.md b/src/connections/destinations/catalog/facebook-pixel-server-side/index.md index d2edca762e..65fe1adeeb 100644 --- a/src/connections/destinations/catalog/facebook-pixel-server-side/index.md +++ b/src/connections/destinations/catalog/facebook-pixel-server-side/index.md @@ -1,8 +1,8 @@ --- title: Facebook Conversions API destination rewrite: true +maintenance: true beta: true -strat: facebook redirect_from: '/connections/destinations/catalog/facebook-conversions-api/' hide-dossier: true --- @@ -11,11 +11,8 @@ hide-dossier: true [Facebook Conversions API](https://developers.facebook.com/docs/marketing-api/conversions-api) allows advertisers to send events from their servers directly to Facebook. Server-Side events are linked to a pixel and are processed like browser pixel events. This means that Server-Side events are used in measurement, reporting, and optimization in the same way as browser pixel events. -> warning "Server Event Parameter Requirements" -> On February 15th 2021, Facebook began enforcing new requirements for server event parameters. After that date, events sent to the Conversions API that do not meet the new requirements might not be available for optimization, targeting, or measurement. For details on how to implement these requirements see [Server Event Parameter Requirements](/docs/connections/destinations/catalog/facebook-pixel-server-side/#server-event-parameter-requirements) - -> success "" -> **Good to know**: This page is about the classic Facebook Conversions API Segment destination. There's also a page about the new [Facebook Conversions API (Actions) destination](/docs/connections/destinations/catalog/actions-facebook-conversions-api/). Both of these destinations are in Public Beta and receive data _from_ Segment. Segment recommends the new Facebook Conversions API (Actions) destination for additional functionality and flexibility. +> info "Server Event Parameter Requirements" +> On February 15th, 2021, Facebook began enforcing new requirements for server event parameters. After that date, events sent to the Conversions API that do not meet the new requirements might not be available for optimization, targeting, or measurement. For details on how to implement these requirements see [Server Event Parameter Requirements](/docs/connections/destinations/catalog/facebook-pixel-server-side/#server-event-parameter-requirements) > info "Destination name change" > Facebook Conversions API was renamed from Facebook Pixel Server-Side. diff --git a/src/connections/destinations/catalog/facebook-pixel/index.md b/src/connections/destinations/catalog/facebook-pixel/index.md index 885571b6fb..a85a4f299b 100644 --- a/src/connections/destinations/catalog/facebook-pixel/index.md +++ b/src/connections/destinations/catalog/facebook-pixel/index.md @@ -19,13 +19,13 @@ strat: facebook ## Other Facebook Destinations Supported by Segment This page is about the **Facebook Pixel**. For documentation on other Facebook destinations, see the pages linked below. -| **Facebook Destination** | Supported by Personas | -| ---------------------- | --------------------- | -| **[Facebook App Events](/docs/connections/destinations/catalog/facebook-app-events/)** | Yes | -| **[Facebook Offline Conversions](/docs/connections/destinations/catalog/facebook-offline-conversions/)** | Yes | -| **[Facebook Pixel](/docs/connections/destinations/catalog/facebook-pixel/)** | No | -| **[Facebook Custom Audiences](/docs/connections/destinations/catalog/personas-facebook-custom-audiences/)** | Yes | -| **Facebook Custom Audiences Website** | Yes | +| **Facebook Destination** | Supported by Personas | +| ----------------------------------------------------------------------------------------------------------- | --------------------- | +| **[Facebook App Events](/docs/connections/destinations/catalog/facebook-app-events/)** | Yes | +| **[Facebook Offline Conversions](/docs/connections/destinations/catalog/facebook-offline-conversions/)** | Yes | +| **[Facebook Pixel](/docs/connections/destinations/catalog/facebook-pixel/)** | No | +| **[Facebook Custom Audiences](/docs/connections/destinations/catalog/personas-facebook-custom-audiences/)** | Yes | +| **[Facebook Conversions API](/docs/connections/destinations/catalog/actions-facebook-conversions-api/)** | Yes | ## Getting Started diff --git a/src/connections/destinations/catalog/personas-facebook-custom-audiences/index.md b/src/connections/destinations/catalog/personas-facebook-custom-audiences/index.md index 0ec15d019e..e61e1ba560 100644 --- a/src/connections/destinations/catalog/personas-facebook-custom-audiences/index.md +++ b/src/connections/destinations/catalog/personas-facebook-custom-audiences/index.md @@ -22,13 +22,13 @@ This allows you to run advertising campaigns in Facebook without having to manua ## Other Facebook Destinations Supported by Segment This page is about the **Facebook Custom Audiences** destination developed specifically for use with **Segment Personas**. For documentation on other Facebook destinations, see the pages linked below. -| **Facebook Destination** | Supported by Personas | -| ---------------------- | --------------------- | -| **[Facebook App Events](/docs/connections/destinations/catalog/facebook-app-events/)** | Yes | -| **[Facebook Offline Conversions](/docs/connections/destinations/catalog/facebook-offline-conversions/)** | Yes | -| **[Facebook Pixel](/docs/connections/destinations/catalog/facebook-pixel/)** | No | -| **[Facebook Custom Audiences](/docs/connections/destinations/catalog/personas-facebook-custom-audiences/)** | Yes | - +| **Facebook Destination** | Supported by Personas | +| ----------------------------------------------------------------------------------------------------------- | --------------------- | +| **[Facebook App Events](/docs/connections/destinations/catalog/facebook-app-events/)** | Yes | +| **[Facebook Offline Conversions](/docs/connections/destinations/catalog/facebook-offline-conversions/)** | Yes | +| **[Facebook Pixel](/docs/connections/destinations/catalog/facebook-pixel/)** | No | +| **[Facebook Custom Audiences](/docs/connections/destinations/catalog/personas-facebook-custom-audiences/)** | Yes | +| **[Facebook Conversions API](/docs/connections/destinations/catalog/actions-facebook-conversions-api/)** | Yes | ## Details diff --git a/src/connections/destinations/catalog/tiktok-conversions/index.md b/src/connections/destinations/catalog/tiktok-conversions/index.md index 9f887e8d92..346823f60d 100644 --- a/src/connections/destinations/catalog/tiktok-conversions/index.md +++ b/src/connections/destinations/catalog/tiktok-conversions/index.md @@ -6,63 +6,73 @@ hide-dossier: true {% include content/plan-grid.md name="actions" %} -The TikTok Conversions Destination enables advertisers to send Segment events to report events directly to TikTok. Data shared can power TikTok solutions like dynamic product ads, custom targeting, campaign optimization and attribution. +The TikTok Conversions destination is a server-to-server integration with the TikTok Events API that allows advertisers to share website visitor events from Segment directly to TikTok. Data shared through the Events API is processed similarly to information shared through the TikTok pixel and TikTok SDK business tools. Advertisers can use events data to power solutions like dynamic showcase ads (DSA), custom targeting, campaign optimization and attribution. Advertisers can see their event data in TikTok Events Manager. -Reporting web events allows advertisers to send user data directly to TikTok for downstream targeting and optimization. Advertisers will be able to see their event data in TikTok Events Manager. +The TikTok Conversions destination is owned and maintained by the TikTok team. -> info "" -> This document is about a feature which is in beta. This means that the Destination Actions are in active development, and some functionality may change before it becomes generally available +## Benefits of TikTok Conversions +The TikTok Conversions destination provides the following benefits: -> success "" -> **Good to know**: This page is about the [Actions-framework](/docs/connections/destinations/actions/) TikTok Conversions Segment Destination. - -## Benefits - -1. **Streamlined stability and security**: Integrate and iterate without client-side limitations, like network connectivity or ad blocker issues. -2. **Configurable privacy controls**: Stay compliant with rapidly evolving requirements with flexible privacy controls that let you adapt what data you share and when you share it. -3. **Maximum event measurement**: Capture more events with improved accuracy across different browsers, apps and devices to get a unified view of your customer's journey from page view to purchase. +1. **Clear mapping of data.** Actions-based destinations enable you to define the mapping between the data Segment receives from your source and the data Segment sends to TikTok. +2. **Prebuilt mappings.** Mappings for TikTok Standard Events, like `PlaceAnOrder`, are prebuilt with the prescribed parameters and available for customization. +3. **Streamlined stability and security.** Integrate and iterate without client-side limitations, like network connectivity or ad blocker issues. +4. **Privacy-focused**: Stay compliant with rapidly evolving requirements with automatic PII hashing and flexible controls that let you adapt what data you share. +5. **Maximum event measurement**: Capture more events with improved accuracy across different browsers, apps, and devices to get a unified view of your customer's journey from page view to purchase. ## Getting started -Follow the instructions below to enable your TikTok ads account, and add the TikTok Conversions Destination to your Segment workspace. +Follow the instructions below to enable your TikTok ads account, and add the TikTok Conversions destination to your Segment workspace. ### TikTok Requirements -The TikTok Conversions destination is configured to use the TikTok Events API. To generate the Pixel ID and Access token: +The TikTok Conversions destination is configured to use the TikTok Events API. To generate a TikTok Pixel Code and Access Token: 1. [Create a TikTok For Business account](https://ads.tiktok.com/marketing_api/docs?id=1702715936951297){:target="_blank"}. -2. Follow instructions for [Authorization](https://ads.tiktok.com/marketing_api/docs?rid=959icq5stjr&id=1701890979375106){:target="_blank"} and generate a long term access token. +2. [Create a TikTok Pixel](https://ads.tiktok.com/help/article?aid=10021){:target="_blank"} in Developer Mode to obtain a Pixel Code. For more information about Developer Mode, please review the [TikTok developer documentation](https://ads.tiktok.com/marketing_api/docs?rid=5ipocbxyw8v&id=1701890973258754){:target="_blank"}. +3. Follow instructions for [Authorization](https://ads.tiktok.com/marketing_api/docs?rid=959icq5stjr&id=1701890979375106){:target="_blank"} and generate a long term Access Token. -### Configuring TikTok Conversions in Segment +### Connect TikTok Conversions to your workspace 1. From the Segment web app, click **Catalog**, then click **Destinations**. -2. Find the Destinations Actions item in the left navigation, and click it. +2. Search for “TikTok Conversions” in the Destinations Catalog, and select the destination. 3. Click **Configure TikTok Conversions**. -4. Select an existing Source to connect to TikTok Conversions. -5. On the next page enter your TikTok Access Token, and Pixel Code. Click Verify credentials. - +4. Select the source that will send data to TikTok Conversions and follow the steps to name your destination. +5. On the Settings tab, enter in your TikTok Access Token and Pixel Code and click **Save**. +6. Follow the steps in the Destinations Actions documentation on [Customizing mappings](/docs/connections/destinations/actions/#customizing-mappings). {% include components/actions-fields.html %} +## FAQ & Troubleshooting +### Match Keys +To increase the probability of matching website visitor events with TikTok ads, please send one or more of the following match keys and identifiers when possible: +- TikTok Click ID +- External ID +- Phone Number +- Email +- IP Address +- User Agent +### Other Standard Events -## Segment event names to TikTok events -The table below shows the mapping of the Segment semantic [ecommerce](/docs/connections/spec/ecommerce/v2/) or custom event names to the TikTok semantic conversion event names in the pre-built mappings. +If you want to send a [TikTok standard event](https://ads.tiktok.com/marketing_api/docs?id=1701890979375106){:target="_blank"} that Segment doesn't have a prebuilt mapping for, you can use the [Report Web Event action](/docs/connections/destinations/catalog/tiktok-conversions/#report-web-event) to send the standard event. For example, if you want to send a `CompleteRegistration` event: +1. Create a mapping for Report Web Event. +2. Set up your Event Trigger criteria for completed registrations. +3. Input a literal string of "CompleteRegistration" as the Event Name. -| Segment Event Name | TikTok Semantic Conversion Event Name | -| -------------------- | ------------------------------------- | -| Checkout Started | InitiateCheckout | -| Products Searched | Search | -| Payment Info Entered | AddPaymentInfo | -| Order Completed | PlaceAnOrder | +### PII Hashing -| Segment Event Type | TikTok Semantic Conversion Event Name | -| -------------------------- | ------------------------------------- | -| All **Segment Page Calls** | ViewContent | +Segment creates a SHA-256 hash of the following fields before sending to TikTok: +- External ID +- Email +- Phone Number - +### Web Diagnostics +You can check whether the integration is working, test events in real-time, and troubleshoot common issues in TikTok’s Web Diagnostics Suite. Please see the [TikTok Pixel Web Diagnostics documentation](https://ads.tiktok.com/help/article?aid=10000360){:target="_blank"} for more information. +## Support +- For general Segment questions, including issues with event data not being sent to TikTok Events Manager, please contact [Segment support](https://segment.com/help/){:target="_blank"}. +- For questions regarding campaign setup and performance, web tracking, or additional API functionality, please contact your TikTok representative. \ No newline at end of file From 452beb017de21181d176608492cd6f9358efd09e Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Tue, 8 Mar 2022 12:47:10 -0500 Subject: [PATCH 4/6] Removing date from docs (#2572) As per discussion in today's BigQuery EOL Monthly check-in! --- src/connections/storage/catalog/bigquery/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connections/storage/catalog/bigquery/index.md b/src/connections/storage/catalog/bigquery/index.md index f632bc6b3b..4bfced7106 100644 --- a/src/connections/storage/catalog/bigquery/index.md +++ b/src/connections/storage/catalog/bigquery/index.md @@ -107,7 +107,7 @@ with credentials, access was granted to a shared Service Account (`connector@segment-1119.iam.gserviceaccount.com`). While convenient for early adopters, this presented potential security risks. -As of **March 2019**, Segment requires BigQuery customers to +Segment now requires BigQuery customers to create their own Service Accounts and provide the app with those credentials instead. In addition, any attempts to update warehouse connection settings will also require these credentials. This effectively deprecates the shared Service From 0d1652e6e8bb304ac73cd796c5ea5c2650fdb9cb Mon Sep 17 00:00:00 2001 From: markzegarelli Date: Tue, 8 Mar 2022 09:47:29 -0800 Subject: [PATCH 5/6] Added clarity around what each icon means (#2574) --- Gemfile.lock | 0 src/_includes/content/regional-integrations-table.md | 12 ++++++------ src/_sass/components/_markdown.scss | 1 + src/guides/regional-segment.md | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) mode change 100644 => 100755 Gemfile.lock diff --git a/Gemfile.lock b/Gemfile.lock old mode 100644 new mode 100755 diff --git a/src/_includes/content/regional-integrations-table.md b/src/_includes/content/regional-integrations-table.md index b3a3555bcc..dcc3b4e546 100644 --- a/src/_includes/content/regional-integrations-table.md +++ b/src/_includes/content/regional-integrations-table.md @@ -29,8 +29,8 @@ {% for source in sources %}
{{source.display_name}} - {% if source.regional contains "eu-west" %}{% else %}{% if source.regional contains "eu-west" %}Supports EU Endpoints{% else %}Does not support EU endpoints{% endif %} {% endfor %} @@ -43,8 +43,8 @@ {{destination.display_name}} - {% if destination.regional contains "eu-west" %}{% else %}{% if destination.regional contains "eu-west" %}Supports EU Endpoints{% else %}Does not support EU endpoints{% endif %} {% endfor %} @@ -56,8 +56,8 @@ {% for warehouse in warehouses %} {{warehouse.display_name}} - {% if warehouse.regional contains "eu-west" %}{% else %}{% if warehouse.regional contains "eu-west" %}Supports EU Endpoints{% else %}Does not support EU endpoints{% endif %} {% endfor %} diff --git a/src/_sass/components/_markdown.scss b/src/_sass/components/_markdown.scss index 80ce9d39d5..cf1a135e87 100644 --- a/src/_sass/components/_markdown.scss +++ b/src/_sass/components/_markdown.scss @@ -131,6 +131,7 @@ border: none; margin: 0 auto; border-radius: 0px; + display: inline } diff --git a/src/guides/regional-segment.md b/src/guides/regional-segment.md index 542b8d50c9..29e5d9e72b 100644 --- a/src/guides/regional-segment.md +++ b/src/guides/regional-segment.md @@ -74,6 +74,6 @@ Use Segment's custom CIDR `3.251.148.96/29` while authorizing Segment to write i > info "Don't see a regional endpoint for a tool you're using?" > As more of the partner tools you use (Sources and Destinations) start to support a regional endpoint, Segment will update this list. Your contact for that tool should have a timeline for when they're hoping to support regional data ingestion. You can also visit Segment's [support page](https://segment.com/help/contact/) for any Segment-related questions. -The following destinations are supported in your EU Segment workspace. The Destination tools that provide an EU Regional endpoint are marked for easy identification (see above.) +The following integrations marked with a ![Supports EU regional endpoints](/docs/images/supported.svg){:class="inline"} (checkmark) support EU Regional endpoints. {% include content/regional-integrations-table.md %} From b041b3f8533be67b0315ba0cf708c79b3f9e5fee Mon Sep 17 00:00:00 2001 From: markzegarelli Date: Tue, 8 Mar 2022 11:26:10 -0800 Subject: [PATCH 6/6] updates --- scripts/catalog_papi.js | 4 +- src/_data/catalog/destinations.yml | 690 +++++++++--------- src/_data/sidenav/strat.yml | 2 - .../index.md | 2 +- .../facebook-pixel-server-side/index.md | 1 + 5 files changed, 349 insertions(+), 350 deletions(-) diff --git a/scripts/catalog_papi.js b/scripts/catalog_papi.js index 878de47c0d..624b8572e6 100644 --- a/scripts/catalog_papi.js +++ b/scripts/catalog_papi.js @@ -123,7 +123,7 @@ const doesCatalogItemExist = (item) => { if (item.status === 'PUBLIC_BETA') { betaFlag = 'beta: true\n' } - content = `---\ntitle: '${item.display_name} Destination'\nhidden: true\npublished: false\n${betaFlag}---\n` + content = `---\ntitle: '${item.display_name} Destination'\nhidden: true\nid: ${item.id}published: false\n${betaFlag}---\n` } fs.mkdirSync(docsPath) fs.writeFileSync(`${docsPath}/index.md`, content) @@ -381,7 +381,7 @@ const updateDestinations = async () => { destination.supportedMethods = renameKey(destination.supportedMethods, 'pageview', 'page') let updatedDestination = { - destination_id: destination.id, + id: destination.id, display_name: destination.name, name: destination.name, slug, diff --git a/src/_data/catalog/destinations.yml b/src/_data/catalog/destinations.yml index 97a5486724..380f165cf4 100644 --- a/src/_data/catalog/destinations.yml +++ b/src/_data/catalog/destinations.yml @@ -1,7 +1,7 @@ # AUTOGENERATED FROM PUBLIC API. DO NOT EDIT # destination data last updated 2022-03-08 items: -- destination_id: 60b5d0a01f3726b85dc05aab +- id: 60b5d0a01f3726b85dc05aab display_name: 2mee name: 2mee slug: 2mee @@ -62,7 +62,7 @@ items: label: Application Id actions: [] presets: [] -- destination_id: 605dd9d7e5ff0b3873e250a4 +- id: 605dd9d7e5ff0b3873e250a4 display_name: AB Smartly name: AB Smartly slug: ab-smartly @@ -177,7 +177,7 @@ items: label: Unit Mapping actions: [] presets: [] -- destination_id: 55d66bb5ebe537b09c977fa3 +- id: 55d66bb5ebe537b09c977fa3 display_name: ActiveCampaign name: ActiveCampaign slug: activecampaign @@ -239,7 +239,7 @@ items: label: API url actions: [] presets: [] -- destination_id: 5c75564f1d2f34000116ef78 +- id: 5c75564f1d2f34000116ef78 display_name: Adikteev name: Adikteev slug: adikteev @@ -291,7 +291,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 56f6ce7280412f644ff12fb2 +- id: 56f6ce7280412f644ff12fb2 display_name: Adjust name: Adjust slug: adjust @@ -423,7 +423,7 @@ items: label: Track Attribution Data actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee93 +- id: 54521fd525e721e32a72ee93 display_name: AdLearn Open Platform name: AdLearn Open Platform slug: adlearn-open-platform @@ -493,7 +493,7 @@ items: label: Retargeting Pixel ID actions: [] presets: [] -- destination_id: 5783cec280412f644ff14226 +- id: 5783cec280412f644ff14226 display_name: Adobe Analytics name: Adobe Analytics slug: adobe-analytics @@ -839,7 +839,7 @@ items: label: Use UTF-8 Charset actions: [] presets: [] -- destination_id: 5d3638cd54d6be00014e6bf1 +- id: 5d3638cd54d6be00014e6bf1 display_name: AdQuick name: AdQuick slug: adquick @@ -894,7 +894,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee8e +- id: 54521fd525e721e32a72ee8e display_name: AdRoll name: AdRoll slug: adroll @@ -977,7 +977,7 @@ items: label: Pixel ID actions: [] presets: [] -- destination_id: 5c7550de16b530000157a2d5 +- id: 5c7550de16b530000157a2d5 display_name: Adtriba name: Adtriba slug: adtriba @@ -1031,7 +1031,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5d0ac1fbc12d700001651e34 +- id: 5d0ac1fbc12d700001651e34 display_name: Airship name: Airship slug: airship @@ -1103,7 +1103,7 @@ items: label: App Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee90 +- id: 54521fd525e721e32a72ee90 display_name: Alexa name: Alexa slug: alexa @@ -1165,7 +1165,7 @@ items: label: Domain actions: [] presets: [] -- destination_id: 5d373a350abf930001a6b70f +- id: 5d373a350abf930001a6b70f display_name: Algolia Insights name: Algolia Insights slug: algolia-insights @@ -1238,7 +1238,7 @@ items: label: Rename Events actions: [] presets: [] -- destination_id: 5d1994fb320116000112aa12 +- id: 5d1994fb320116000112aa12 display_name: Amazon EventBridge name: Amazon EventBridge slug: amazon-eventbridge @@ -1297,7 +1297,7 @@ items: label: Region actions: [] presets: [] -- destination_id: 57da359580412f644ff33fb9 +- id: 57da359580412f644ff33fb9 display_name: Amazon Kinesis name: Amazon Kinesis slug: amazon-kinesis @@ -1387,7 +1387,7 @@ items: label: Use Segment Message ID actions: [] presets: [] -- destination_id: 59022a2270a3e552b955caa9 +- id: 59022a2270a3e552b955caa9 display_name: Amazon Kinesis Firehose name: Amazon Kinesis Firehose slug: amazon-kinesis-firehose @@ -1467,7 +1467,7 @@ items: label: Secret ID (Read-Only) actions: [] presets: [] -- destination_id: 5c86f0512f5eb100013d570b +- id: 5c86f0512f5eb100013d570b display_name: Amazon Lambda name: Amazon Lambda slug: amazon-lambda @@ -1581,7 +1581,7 @@ items: label: Role Address actions: [] presets: [] -- destination_id: 5c7f0c9879726100019cc56b +- id: 5c7f0c9879726100019cc56b display_name: Amazon Personalize name: Amazon Personalize slug: amazon-personalize @@ -1697,7 +1697,7 @@ items: label: Role Address actions: [] presets: [] -- destination_id: 573a3dfb80412f644ff13679 +- id: 573a3dfb80412f644ff13679 display_name: Ambassador name: Ambassador slug: ambassador @@ -1774,7 +1774,7 @@ items: label: Client ID actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee91 +- id: 54521fd525e721e32a72ee91 display_name: Amplitude name: Amplitude slug: amplitude @@ -2200,7 +2200,7 @@ items: label: Version Name actions: [] presets: [] -- destination_id: 5f7dd6d21ad74f3842b1fc47 +- id: 5f7dd6d21ad74f3842b1fc47 display_name: Amplitude (Actions) name: Amplitude (Actions) slug: actions-amplitude @@ -3962,7 +3962,7 @@ items: referrer: '@path': $.context.page.referrer trigger: type = "track" -- destination_id: 5feb4422ecbab07ade913573 +- id: 5feb4422ecbab07ade913573 display_name: Anodot name: Anodot slug: anodot @@ -4017,7 +4017,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 554926390a20f4e22f0fb38a +- id: 554926390a20f4e22f0fb38a display_name: Appcues name: Appcues slug: appcues @@ -4079,7 +4079,7 @@ items: label: Appcues Id actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee95 +- id: 54521fd525e721e32a72ee95 display_name: AppNexus name: AppNexus slug: appnexus @@ -4131,7 +4131,7 @@ items: label: Events actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee8f +- id: 54521fd525e721e32a72ee8f display_name: AppsFlyer name: AppsFlyer slug: appsflyer @@ -4265,7 +4265,7 @@ items: label: Track Attribution Data actions: [] presets: [] -- destination_id: 5537d3e80a20f4e22f0fb385 +- id: 5537d3e80a20f4e22f0fb385 display_name: Apptimize name: Apptimize slug: apptimize @@ -4341,7 +4341,7 @@ items: label: Send experiment data to other tools (as a track call) actions: [] presets: [] -- destination_id: 5d00754256e478000114784f +- id: 5d00754256e478000114784f display_name: Asayer name: Asayer slug: asayer @@ -4401,7 +4401,7 @@ items: label: Site ID actions: [] presets: [] -- destination_id: 54c02204db31d978f14a7f6d +- id: 54c02204db31d978f14a7f6d display_name: Atatus name: Atatus slug: atatus @@ -4485,7 +4485,7 @@ items: label: Enable Offline Errors and Metrics actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee96 +- id: 54521fd525e721e32a72ee96 display_name: Attribution name: Attribution slug: attribution @@ -4541,7 +4541,7 @@ items: label: Attribution Project Id actions: [] presets: [] -- destination_id: 5cae592103251a0001c2820a +- id: 5cae592103251a0001c2820a display_name: Auryc name: Auryc slug: auryc @@ -4596,7 +4596,7 @@ items: label: Site ID actions: [] presets: [] -- destination_id: 613ef845b8784e858199fe2d +- id: 613ef845b8784e858199fe2d display_name: AutopilotApp name: AutopilotApp slug: autopilotapp @@ -4649,7 +4649,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5515e05c0a20f4e22f0fb36f +- id: 5515e05c0a20f4e22f0fb36f display_name: AutopilotHQ name: AutopilotHQ slug: autopilothq @@ -4703,7 +4703,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 60be92c8dabdd561bf6c9130 +- id: 60be92c8dabdd561bf6c9130 display_name: AWS S3 name: AWS S3 slug: aws-s3 @@ -4768,7 +4768,7 @@ items: label: IAM Role ARN actions: [] presets: [] -- destination_id: 5cbf95e258453600011d6d8f +- id: 5cbf95e258453600011d6d8f display_name: Azure Function name: Azure Function slug: azure-function @@ -4823,7 +4823,7 @@ items: label: HTTP Trigger actions: [] presets: [] -- destination_id: 596d11f870a3e552b957e6d9 +- id: 596d11f870a3e552b957e6d9 display_name: Batch name: Batch slug: batch @@ -4907,7 +4907,7 @@ items: label: GCM Sender ID actions: [] presets: [] -- destination_id: 5d2d8f56f159f30001b3c3a9 +- id: 5d2d8f56f159f30001b3c3a9 display_name: Beamer name: Beamer slug: beamer @@ -4964,7 +4964,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee97 +- id: 54521fd525e721e32a72ee97 display_name: Bing Ads name: Bing Ads slug: bing-ads @@ -5016,7 +5016,7 @@ items: label: Tag ID actions: [] presets: [] -- destination_id: 5c6db002edda600001b2af8b +- id: 5c6db002edda600001b2af8b display_name: Blendo name: Blendo slug: blendo @@ -5069,7 +5069,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 547610a5db31d978f14a5c4e +- id: 547610a5db31d978f14a5c4e display_name: Blueshift name: Blueshift slug: blueshift @@ -5132,7 +5132,7 @@ items: label: Retarget actions: [] presets: [] -- destination_id: 5642909ae954a874ca44c582 +- id: 5642909ae954a874ca44c582 display_name: Branch Metrics name: Branch Metrics slug: branch-metrics @@ -5200,7 +5200,7 @@ items: label: Branch Key actions: [] presets: [] -- destination_id: 54efbf12db31d978f14aa8b5 +- id: 54efbf12db31d978f14aa8b5 display_name: Braze name: Braze slug: braze @@ -5491,7 +5491,7 @@ items: label: Braze Web SDK Version actions: [] presets: [] -- destination_id: 60f9d0d048950c356be2e4da +- id: 60f9d0d048950c356be2e4da display_name: Braze Cloud Mode (Actions) name: Braze Cloud Mode (Actions) slug: braze-cloud-mode-actions @@ -6319,7 +6319,7 @@ items: '@path': $.properties _update_existing_only: false trigger: type = "track" and event != "Order Completed" -- destination_id: 60fb01aec459242d3b6f20c1 +- id: 60fb01aec459242d3b6f20c1 display_name: Braze Web Device Mode (Actions) name: Braze Web Device Mode (Actions) slug: braze-web-device-mode-actions @@ -6929,7 +6929,7 @@ items: eventProperties: '@path': $.properties trigger: type = "track" and event != "Order Completed" -- destination_id: 54521fd525e721e32a72ee98 +- id: 54521fd525e721e32a72ee98 display_name: Bronto name: Bronto slug: bronto @@ -6989,7 +6989,7 @@ items: label: Site ID actions: [] presets: [] -- destination_id: 5fabc0b00f88248bbce4db48 +- id: 5fabc0b00f88248bbce4db48 display_name: Bucket name: Bucket slug: bucket @@ -7043,7 +7043,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee99 +- id: 54521fd525e721e32a72ee99 display_name: BugHerd name: BugHerd slug: bugherd @@ -7108,7 +7108,7 @@ items: label: Show the Default Feedback Tab actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee9b +- id: 54521fd525e721e32a72ee9b display_name: Bugsnag name: Bugsnag slug: bugsnag @@ -7181,7 +7181,7 @@ items: label: Use SSL actions: [] presets: [] -- destination_id: 5f99f7f79cecdd08a8e22c4f +- id: 5f99f7f79cecdd08a8e22c4f display_name: Button name: Button slug: button @@ -7238,7 +7238,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5ca76cbb1a6b900001618e74 +- id: 5ca76cbb1a6b900001618e74 display_name: BuzzBoard name: BuzzBoard slug: buzzboard @@ -7292,7 +7292,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c9c28081e78ca0001031b81 +- id: 5c9c28081e78ca0001031b81 display_name: ByteGain name: ByteGain slug: bytegain @@ -7350,7 +7350,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 60347eb973e8ce37bc360568 +- id: 60347eb973e8ce37bc360568 display_name: BytePlus name: BytePlus slug: byteplus @@ -7403,7 +7403,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5df41c5d2f4a8cd2b74b5725 +- id: 5df41c5d2f4a8cd2b74b5725 display_name: Calixa name: Calixa slug: calixa @@ -7462,7 +7462,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c953ce33407d0000104d495 +- id: 5c953ce33407d0000104d495 display_name: Callingly name: Callingly slug: callingly @@ -7518,7 +7518,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c7df2eafeed45000121a49e +- id: 5c7df2eafeed45000121a49e display_name: Candu name: Candu slug: candu @@ -7570,7 +7570,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 609d2b40f4bd0f24a5a37fbb +- id: 609d2b40f4bd0f24a5a37fbb display_name: Canny name: Canny slug: canny @@ -7631,7 +7631,7 @@ items: label: Custom Fields actions: [] presets: [] -- destination_id: 56a8f566e954a874ca44d3b0 +- id: 56a8f566e954a874ca44d3b0 display_name: Castle name: Castle slug: castle @@ -7703,7 +7703,7 @@ items: label: API Publishable Key actions: [] presets: [] -- destination_id: 555a14f80a20f4e22f0fb38d +- id: 555a14f80a20f4e22f0fb38d display_name: Chameleon name: Chameleon slug: chameleon @@ -7761,7 +7761,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee9d +- id: 54521fd525e721e32a72ee9d display_name: Chartbeat name: Chartbeat slug: chartbeat @@ -7854,7 +7854,7 @@ items: label: Use Chartbeat Video Script actions: [] presets: [] -- destination_id: 5c6386ce6b340800017691fa +- id: 5c6386ce6b340800017691fa display_name: ChurnZero name: ChurnZero slug: churnzero @@ -7906,7 +7906,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 576af9ca80412f644ff13b87 +- id: 576af9ca80412f644ff13b87 display_name: Clearbit Enrichment name: Clearbit Enrichment slug: clearbit-enrichment @@ -7962,7 +7962,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 57e0726680412f644ff36883 +- id: 57e0726680412f644ff36883 display_name: Clearbit Reveal name: Clearbit Reveal slug: clearbit-reveal @@ -8021,7 +8021,7 @@ items: label: writeKeyAllowed actions: [] presets: [] -- destination_id: 5c412bc57526b50001622f52 +- id: 5c412bc57526b50001622f52 display_name: ClearBrain name: ClearBrain slug: clearbrain @@ -8075,7 +8075,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5711271880412f644ff13150 +- id: 5711271880412f644ff13150 display_name: CleverTap name: CleverTap slug: clevertap @@ -8151,7 +8151,7 @@ items: label: Region actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eea2 +- id: 54521fd525e721e32a72eea2 display_name: Clicky name: Clicky slug: clicky @@ -8205,7 +8205,7 @@ items: label: Site ID actions: [] presets: [] -- destination_id: 55677dfd0a20f4e22f0fb39a +- id: 55677dfd0a20f4e22f0fb39a display_name: ClientSuccess name: ClientSuccess slug: clientsuccess @@ -8265,7 +8265,7 @@ items: label: Project Id actions: [] presets: [] -- destination_id: 603bebf26429db1da7b36150 +- id: 603bebf26429db1da7b36150 display_name: Cliff name: Cliff slug: cliff @@ -8318,7 +8318,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eea1 +- id: 54521fd525e721e32a72eea1 display_name: comScore name: comScore slug: comscore @@ -8452,7 +8452,7 @@ items: label: Publisher Secret actions: [] presets: [] -- destination_id: 5cb607714cab700001f13480 +- id: 5cb607714cab700001f13480 display_name: ConvertFlow name: ConvertFlow slug: convertflow @@ -8510,7 +8510,7 @@ items: label: Website ID actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eea4 +- id: 54521fd525e721e32a72eea4 display_name: Convertro name: Convertro slug: convertro @@ -8607,7 +8607,7 @@ items: label: Site ID actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eea5 +- id: 54521fd525e721e32a72eea5 display_name: Countly name: Countly slug: countly @@ -8671,7 +8671,7 @@ items: label: Server URL actions: [] presets: [] -- destination_id: 5e4b07ed88472cc19ea4f8d0 +- id: 5e4b07ed88472cc19ea4f8d0 display_name: Courier name: Courier slug: courier @@ -8729,7 +8729,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eea7 +- id: 54521fd525e721e32a72eea7 display_name: Crazy Egg name: Crazy Egg slug: crazy-egg @@ -8785,7 +8785,7 @@ items: label: Account Number actions: [] presets: [] -- destination_id: 5d284cc671bb1c0001f41d2a +- id: 5d284cc671bb1c0001f41d2a display_name: Crisp name: Crisp slug: crisp @@ -8850,7 +8850,7 @@ items: label: Website ID actions: [] presets: [] -- destination_id: 5787cc5180412f644ff14d7e +- id: 5787cc5180412f644ff14d7e display_name: Criteo App & Web Events name: Criteo App & Web Events slug: criteo-app-web-events @@ -8952,7 +8952,7 @@ items: label: Supporting User Data actions: [] presets: [] -- destination_id: 5d433ab511dfe7000134faca +- id: 5d433ab511dfe7000134faca display_name: Criteo Offline Conversions name: Criteo Offline Conversions slug: criteo-offline-conversions @@ -9015,7 +9015,7 @@ items: label: Client ID actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eea3 +- id: 54521fd525e721e32a72eea3 display_name: Crittercism name: Crittercism slug: crittercism @@ -9125,7 +9125,7 @@ items: label: Collect Logcat Data (Android) actions: [] presets: [] -- destination_id: 5e59dad99437ab152550ce1f +- id: 5e59dad99437ab152550ce1f display_name: CrowdPower name: CrowdPower slug: crowdpower @@ -9182,7 +9182,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c785483f45dbc00017f0731 +- id: 5c785483f45dbc00017f0731 display_name: Cruncher name: Cruncher slug: cruncher @@ -9238,7 +9238,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5cf78a8db6bcdf00017208cd +- id: 5cf78a8db6bcdf00017208cd display_name: Custify name: Custify slug: custify @@ -9294,7 +9294,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eea8 +- id: 54521fd525e721e32a72eea8 display_name: Customer.io name: Customer.io slug: customer-io @@ -9378,7 +9378,7 @@ items: label: Site ID actions: [] presets: [] -- destination_id: 5f7dd78fe27ce7ff2b8bfa37 +- id: 5f7dd78fe27ce7ff2b8bfa37 display_name: Customer.io (Actions) name: Customer.io (Actions) slug: customer-io-actions @@ -10032,7 +10032,7 @@ items: device_id: '@path': $.context.device.token trigger: event = "Application Uninstalled" -- destination_id: 5c9ce8b88171a10001f9eefa +- id: 5c9ce8b88171a10001f9eefa display_name: CustomerSuccessBox name: CustomerSuccessBox slug: customersuccessbox @@ -10090,7 +10090,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5cee939ff784ec0001f1cf91 +- id: 5cee939ff784ec0001f1cf91 display_name: CustomFit.ai name: CustomFit.ai slug: customfit-ai @@ -10149,7 +10149,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5e1f879beef894b09f7a0ba9 +- id: 5e1f879beef894b09f7a0ba9 display_name: Data Lakes name: Data Lakes slug: data-lakes @@ -10255,7 +10255,7 @@ items: label: S3 Bucket actions: [] presets: [] -- destination_id: 5e0e30c894764f0b78f89912 +- id: 5e0e30c894764f0b78f89912 display_name: DataBrain name: DataBrain slug: databrain @@ -10315,7 +10315,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 58915ccf80412f644ff6295b +- id: 58915ccf80412f644ff6295b display_name: Delighted name: Delighted slug: delighted @@ -10365,7 +10365,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5f73b9dae27ce740818bf92d +- id: 5f73b9dae27ce740818bf92d display_name: Digioh name: Digioh slug: digioh @@ -10423,7 +10423,7 @@ items: label: Digioh Account Email actions: [] presets: [] -- destination_id: 57ab9dfc80412f644ff2004c +- id: 57ab9dfc80412f644ff2004c display_name: DoubleClick Floodlight name: DoubleClick Floodlight slug: doubleclick-floodlight @@ -10550,7 +10550,7 @@ items: label: Use Transaction Counting (Client Side Only) actions: [] presets: [] -- destination_id: 5c6ef3322a6fb40001a71bf7 +- id: 5c6ef3322a6fb40001a71bf7 display_name: Dreamdata IO name: Dreamdata IO slug: dreamdata-io @@ -10601,7 +10601,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eeaa +- id: 54521fd525e721e32a72eeaa display_name: Drip name: Drip slug: drip @@ -10682,7 +10682,7 @@ items: label: API Token actions: [] presets: [] -- destination_id: 556df6680a20f4e22f0fb3a0 +- id: 556df6680a20f4e22f0fb3a0 display_name: Elevio name: Elevio slug: elevio @@ -10734,7 +10734,7 @@ items: label: Account Id actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eeac +- id: 54521fd525e721e32a72eeac display_name: Eloqua name: Eloqua slug: eloqua @@ -10872,7 +10872,7 @@ items: label: Username actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eeab +- id: 54521fd525e721e32a72eeab display_name: Email Aptitude name: Email Aptitude slug: email-aptitude @@ -10927,7 +10927,7 @@ items: label: Account ID actions: [] presets: [] -- destination_id: 5a8e1add366cd2000115dfe7 +- id: 5a8e1add366cd2000115dfe7 display_name: Emarsys name: Emarsys slug: emarsys @@ -10982,7 +10982,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c8bcba020ab84000148897c +- id: 5c8bcba020ab84000148897c display_name: EMMA name: EMMA slug: emma @@ -11038,7 +11038,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 607482568738ee46aaa8404c +- id: 607482568738ee46aaa8404c display_name: Engage Messaging name: Engage Messaging slug: engage-messaging @@ -11103,7 +11103,7 @@ items: label: List ID actions: [] presets: [] -- destination_id: 5fb411aeff3f6d1023f2ae8d +- id: 5fb411aeff3f6d1023f2ae8d display_name: EnjoyHQ name: EnjoyHQ slug: enjoyhq @@ -11158,7 +11158,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c6dca8369c83b0001d6b868 +- id: 5c6dca8369c83b0001d6b868 display_name: EPICA name: EPICA slug: epica @@ -11213,7 +11213,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eead +- id: 54521fd525e721e32a72eead display_name: Errorception name: Errorception slug: errorception @@ -11280,7 +11280,7 @@ items: label: Project ID actions: [] presets: [] -- destination_id: 5fdce712dc1fbc625ebd13b8 +- id: 5fdce712dc1fbc625ebd13b8 display_name: Everflow name: Everflow slug: everflow @@ -11344,7 +11344,7 @@ items: label: Event Mapping actions: [] presets: [] -- destination_id: 5cc205876b9a830001432515 +- id: 5cc205876b9a830001432515 display_name: Experiments by GrowthHackers name: Experiments by GrowthHackers slug: experiments-by-growthhackers @@ -11400,7 +11400,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5d4d88bbd02041672e51e3ca +- id: 5d4d88bbd02041672e51e3ca display_name: Exponea name: Exponea slug: exponea @@ -11503,7 +11503,7 @@ items: label: Track session ping actions: [] presets: [] -- destination_id: 5e79ef31929aef3bdfbc53a5 +- id: 5e79ef31929aef3bdfbc53a5 display_name: Extole Platform name: Extole Platform slug: extole-platform @@ -11559,7 +11559,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 56fc7e4680412f644ff12fb9 +- id: 56fc7e4680412f644ff12fb9 display_name: Facebook App Events name: Facebook App Events slug: facebook-app-events @@ -11731,7 +11731,7 @@ items: Only) actions: [] presets: [] -- destination_id: 61806e472cd47ea1104885fc +- id: 61806e472cd47ea1104885fc display_name: Facebook Conversions API (Actions) name: Facebook Conversions API (Actions) slug: actions-facebook-conversions-api @@ -13125,7 +13125,7 @@ items: dynamic: false allowNull: false presets: [] -- destination_id: 58ae54dc70a3e552b95415f6 +- id: 58ae54dc70a3e552b95415f6 display_name: Facebook Offline Conversions name: Facebook Offline Conversions slug: facebook-offline-conversions @@ -13226,7 +13226,7 @@ items: label: Value Field Identifier actions: [] presets: [] -- destination_id: 5661eb58e954a874ca44cc07 +- id: 5661eb58e954a874ca44cc07 display_name: Facebook Pixel name: Facebook Pixel slug: facebook-pixel @@ -13413,7 +13413,7 @@ items: label: Allowed PII Properties actions: [] presets: [] -- destination_id: 5d1060c40d357d000181e92c +- id: 5d1060c40d357d000181e92c display_name: FactorsAI name: FactorsAI slug: factorsai @@ -13475,7 +13475,7 @@ items: label: Publishable API Key actions: [] presets: [] -- destination_id: 579a568e80412f644ff19cf7 +- id: 579a568e80412f644ff19cf7 display_name: Firebase name: Firebase slug: firebase @@ -13534,7 +13534,7 @@ items: label: Deep Link URL Scheme (iOS) actions: [] presets: [] -- destination_id: 54521fd625e721e32a72eeb1 +- id: 54521fd625e721e32a72eeb1 display_name: Flurry name: Flurry slug: flurry @@ -13631,7 +13631,7 @@ items: label: Send Data to Flurry Over HTTPS actions: [] presets: [] -- destination_id: 54521fd625e721e32a72eeb2 +- id: 54521fd625e721e32a72eeb2 display_name: FoxMetrics name: FoxMetrics slug: foxmetrics @@ -13688,7 +13688,7 @@ items: label: App ID actions: [] presets: [] -- destination_id: 5c823fb8af6c8c00015636b6 +- id: 5c823fb8af6c8c00015636b6 display_name: Freshmarketer name: Freshmarketer slug: freshmarketer @@ -13744,7 +13744,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 56fd5efd80412f644ff12fbd +- id: 56fd5efd80412f644ff12fbd display_name: Freshsales name: Freshsales slug: freshsales @@ -13804,7 +13804,7 @@ items: label: Freshsales subdomain actions: [] presets: [] -- destination_id: 61dde0dc77eb0db0392649d3 +- id: 61dde0dc77eb0db0392649d3 display_name: Friendbuy (Cloud Destination) name: Friendbuy (Cloud Destination) slug: actions-friendbuy-cloud @@ -14957,7 +14957,7 @@ items: dynamic: false allowNull: false presets: [] -- destination_id: 59ce9468cf711e00014a9c12 +- id: 59ce9468cf711e00014a9c12 display_name: Friendbuy (Legacy) name: Friendbuy (Legacy) slug: friendbuy @@ -15032,7 +15032,7 @@ items: label: Page Widgets actions: [] presets: [] -- destination_id: 6170a348128093cd0245e0ea +- id: 6170a348128093cd0245e0ea display_name: Friendbuy (Web Destination) name: Friendbuy (Web Destination) slug: actions-friendbuy @@ -16144,7 +16144,7 @@ items: title: '@path': $.properties.title trigger: type = "page" -- destination_id: 54521fd625e721e32a72eeb8 +- id: 54521fd625e721e32a72eeb8 display_name: FullStory name: FullStory slug: fullstory @@ -16224,7 +16224,7 @@ items: label: Track Named Pages actions: [] presets: [] -- destination_id: 6141153ee7500f15d3838703 +- id: 6141153ee7500f15d3838703 display_name: Fullstory (Actions) name: Fullstory (Actions) slug: actions-fullstory @@ -16462,7 +16462,7 @@ items: properties: '@path': $.properties trigger: type = "track" -- destination_id: 5d3752aec1c95d00012c80aa +- id: 5d3752aec1c95d00012c80aa display_name: FunnelEnvy name: FunnelEnvy slug: funnelenvy @@ -16521,7 +16521,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5d10e0d0d3831900017af2cd +- id: 5d10e0d0d3831900017af2cd display_name: FunnelFox name: FunnelFox slug: funnelfox @@ -16579,7 +16579,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd625e721e32a72eeb5 +- id: 54521fd625e721e32a72eeb5 display_name: Gainsight name: Gainsight slug: gainsight @@ -16647,7 +16647,7 @@ items: label: Whitelist Track Events actions: [] presets: [] -- destination_id: 59d6b77928a96e00019c6ded +- id: 59d6b77928a96e00019c6ded display_name: Gainsight PX name: Gainsight PX slug: gainsight-px @@ -16715,7 +16715,7 @@ items: label: Data Center actions: [] presets: [] -- destination_id: 5df6778be7d93d3a5b742b1a +- id: 5df6778be7d93d3a5b742b1a display_name: Gameball name: Gameball slug: gameball @@ -16781,7 +16781,7 @@ items: label: Registered Events actions: [] presets: [] -- destination_id: 54521fd625e721e32a72eeb7 +- id: 54521fd625e721e32a72eeb7 display_name: Gauges name: Gauges slug: gauges @@ -16836,7 +16836,7 @@ items: label: Site ID actions: [] presets: [] -- destination_id: 5ec499003e60e9200f681768 +- id: 5ec499003e60e9200f681768 display_name: Gist name: Gist slug: gist @@ -16895,7 +16895,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5653a808e954a874ca44cbe6 +- id: 5653a808e954a874ca44cbe6 display_name: goedle.io name: goedle.io slug: goedle-io @@ -16947,7 +16947,7 @@ items: label: APP Key actions: [] presets: [] -- destination_id: 54521fd525e721e32a72ee92 +- id: 54521fd525e721e32a72ee92 display_name: Google Ads (Classic) name: Google Ads (Classic) slug: google-ads-classic @@ -17078,7 +17078,7 @@ items: Only) actions: [] presets: [] -- destination_id: 5a03bfe73156760001ab34ec +- id: 5a03bfe73156760001ab34ec display_name: Google Ads (Gtag) name: Google Ads (Gtag) slug: google-ads-gtag @@ -17193,7 +17193,7 @@ items: label: Send Page View actions: [] presets: [] -- destination_id: 5a6b50f1c900fa00011858fd +- id: 5a6b50f1c900fa00011858fd display_name: Google AdWords Remarketing Lists (Customer Match) name: Google AdWords Remarketing Lists (Customer Match) slug: adwords-remarketing-lists @@ -17254,7 +17254,7 @@ items: label: App ID actions: [] presets: [] -- destination_id: 60ad61f9ff47a16b8fb7b5d9 +- id: 60ad61f9ff47a16b8fb7b5d9 display_name: Google Analytics 4 name: Google Analytics 4 slug: actions-google-analytics-4 @@ -19613,7 +19613,7 @@ items: dynamic: false allowNull: false presets: [] -- destination_id: 5cbe24b1d07261000146ab55 +- id: 5cbe24b1d07261000146ab55 display_name: Google Cloud Function name: Google Cloud Function slug: google-cloud-function @@ -19673,7 +19673,7 @@ items: label: HTTP Trigger actions: [] presets: [] -- destination_id: 5a25e415229c250001a0a402 +- id: 5a25e415229c250001a0a402 display_name: Google Cloud PubSub name: Google Cloud PubSub slug: google-cloud-pubsub @@ -19732,7 +19732,7 @@ items: label: Mapped Topics actions: [] presets: [] -- destination_id: 5d375a0e6947e700012f1d5b +- id: 5d375a0e6947e700012f1d5b display_name: Google Cloud Storage name: Google Cloud Storage slug: google-cloud-storage @@ -19793,7 +19793,7 @@ items: label: GCS Private Key File actions: [] presets: [] -- destination_id: 60ae8b97dcb6cc52d5d0d5ab +- id: 60ae8b97dcb6cc52d5d0d5ab display_name: Google Enhanced Conversions name: Google Enhanced Conversions slug: actions-google-enhanced-conversions @@ -20149,7 +20149,7 @@ items: dynamic: false allowNull: false presets: [] -- destination_id: 54521fd625e721e32a72eeb9 +- id: 54521fd625e721e32a72eeb9 display_name: Google Tag Manager name: Google Tag Manager slug: google-tag-manager @@ -20243,7 +20243,7 @@ items: label: Track Named Pages actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eebb +- id: 54521fd725e721e32a72eebb display_name: Google Universal Analytics name: Google Universal Analytics slug: google-analytics @@ -20680,7 +20680,7 @@ items: label: User Deletion actions: [] presets: [] -- destination_id: 54521fd625e721e32a72eeba +- id: 54521fd625e721e32a72eeba display_name: GoSquared name: GoSquared slug: gosquared @@ -20795,7 +20795,7 @@ items: label: Use Cookies actions: [] presets: [] -- destination_id: 61e8726c123c1a81273d00e4 +- id: 61e8726c123c1a81273d00e4 display_name: GraphJSON name: GraphJSON slug: graphjson @@ -20850,7 +20850,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 55d37a3f0a20f4e22f0fb3ea +- id: 55d37a3f0a20f4e22f0fb3ea display_name: HasOffers name: HasOffers slug: hasoffers @@ -20900,7 +20900,7 @@ items: label: Network Id actions: [] presets: [] -- destination_id: 5d73347d0bbdf3a5abebca15 +- id: 5d73347d0bbdf3a5abebca15 display_name: Hawkei name: Hawkei slug: hawkei @@ -20965,7 +20965,7 @@ items: label: Workspace actions: [] presets: [] -- destination_id: 60900f0a60033befef038889 +- id: 60900f0a60033befef038889 display_name: HeadsUp AI name: HeadsUp AI slug: headsup-ai @@ -21019,7 +21019,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eebd +- id: 54521fd725e721e32a72eebd display_name: Heap name: Heap slug: heap @@ -21076,7 +21076,7 @@ items: label: App ID actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eebc +- id: 54521fd725e721e32a72eebc display_name: Hello Bar name: Hello Bar slug: hello-bar @@ -21130,7 +21130,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eebf +- id: 54521fd725e721e32a72eebf display_name: Help Scout name: Help Scout slug: help-scout @@ -21177,7 +21177,7 @@ items: settings: [] actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eebe +- id: 54521fd725e721e32a72eebe display_name: HitTail name: HitTail slug: hittail @@ -21232,7 +21232,7 @@ items: label: Site ID actions: [] presets: [] -- destination_id: 5913371070a3e552b9561a4e +- id: 5913371070a3e552b9561a4e display_name: Hotjar name: Hotjar slug: hotjar @@ -21298,7 +21298,7 @@ items: label: IE9 Placeholder Polyfill actions: [] presets: [] -- destination_id: 60a40b2d20a31975d7b14052 +- id: 60a40b2d20a31975d7b14052 display_name: Houseware name: Houseware slug: houseware @@ -21354,7 +21354,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eec1 +- id: 54521fd725e721e32a72eec1 display_name: HubSpot name: HubSpot slug: hubspot @@ -21452,7 +21452,7 @@ items: label: Hub ID actions: [] presets: [] -- destination_id: 5728ed9c80412f644ff132d9 +- id: 5728ed9c80412f644ff132d9 display_name: Hull name: Hull slug: hull @@ -21506,7 +21506,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5cd30f824e267500018a1063 +- id: 5cd30f824e267500018a1063 display_name: hydra name: hydra slug: hydra @@ -21563,7 +21563,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5a3ab305a1e66e00017185f9 +- id: 5a3ab305a1e66e00017185f9 display_name: IBM UBX name: IBM UBX slug: ibm-ubx @@ -21634,7 +21634,7 @@ items: label: Authentication Key actions: [] presets: [] -- destination_id: 5ed96e0b97e7ba0c0346cc04 +- id: 5ed96e0b97e7ba0c0346cc04 display_name: Impact Partnership Cloud name: Impact Partnership Cloud slug: impact-partnership-cloud @@ -21790,7 +21790,7 @@ items: label: Page Load Event Names actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eec0 +- id: 54521fd725e721e32a72eec0 display_name: Improvely name: Improvely slug: improvely @@ -21852,7 +21852,7 @@ items: label: Project ID actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eec4 +- id: 54521fd725e721e32a72eec4 display_name: Indicative name: Indicative slug: indicative @@ -21909,7 +21909,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5f0746ced1c79b49ddee49fd +- id: 5f0746ced1c79b49ddee49fd display_name: Inkit name: Inkit slug: inkit @@ -21964,7 +21964,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 556de4160a20f4e22f0fb39d +- id: 556de4160a20f4e22f0fb39d display_name: InMoment (formerly Wootric) name: InMoment (formerly Wootric) slug: inmoment-formerly-wootric @@ -22035,7 +22035,7 @@ items: label: Client ID actions: [] presets: [] -- destination_id: 5f2cf019edbedc752d668f69 +- id: 5f2cf019edbedc752d668f69 display_name: Insider name: Insider slug: insider @@ -22096,7 +22096,7 @@ items: label: Insider Partner Name actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eec3 +- id: 54521fd725e721e32a72eec3 display_name: Inspectlet name: Inspectlet slug: inspectlet @@ -22154,7 +22154,7 @@ items: label: WID actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eec6 +- id: 54521fd725e721e32a72eec6 display_name: Intercom name: Intercom slug: intercom @@ -22282,7 +22282,7 @@ items: label: Rich Link Properties actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eec5 +- id: 54521fd725e721e32a72eec5 display_name: Iron.io name: Iron.io slug: iron-io @@ -22349,7 +22349,7 @@ items: label: Token actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eecc +- id: 54521fd925e721e32a72eecc display_name: Iterable name: Iterable slug: iterable @@ -22443,7 +22443,7 @@ items: label: Track Named Pages actions: [] presets: [] -- destination_id: 607d4f97829762f3b69a807b +- id: 607d4f97829762f3b69a807b display_name: journy io name: journy io slug: journy-io @@ -22499,7 +22499,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5f0c84d048d8688a7049c172 +- id: 5f0c84d048d8688a7049c172 display_name: June name: June slug: june @@ -22551,7 +22551,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54751740db31d978f14a5bce +- id: 54751740db31d978f14a5bce display_name: Kahuna name: Kahuna slug: kahuna @@ -22633,7 +22633,7 @@ items: label: Sender ID / Google API Project Number actions: [] presets: [] -- destination_id: 609b99352cc613d05627620e +- id: 609b99352cc613d05627620e display_name: Kameleoon name: Kameleoon slug: kameleoon @@ -22695,7 +22695,7 @@ items: label: Sitecode actions: [] presets: [] -- destination_id: 54521fd825e721e32a72eeca +- id: 54521fd825e721e32a72eeca display_name: Keen name: Keen slug: keen @@ -22841,7 +22841,7 @@ items: label: Write Key actions: [] presets: [] -- destination_id: 60525b44d37b46d34612c45e +- id: 60525b44d37b46d34612c45e display_name: Kevel name: Kevel slug: kevel @@ -22899,7 +22899,7 @@ items: label: Network ID actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eec7 +- id: 54521fd725e721e32a72eec7 display_name: KISSmetrics name: KISSmetrics slug: kissmetrics @@ -22976,7 +22976,7 @@ items: label: Track Named Pages actions: [] presets: [] -- destination_id: 5ca6a9bcc7781c00018a4580 +- id: 5ca6a9bcc7781c00018a4580 display_name: Kitemetrics name: Kitemetrics slug: kitemetrics @@ -23034,7 +23034,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd825e721e32a72eec8 +- id: 54521fd825e721e32a72eec8 display_name: Klaviyo name: Klaviyo slug: klaviyo @@ -23158,7 +23158,7 @@ items: label: Send Placed Order Events as Order Completed actions: [] presets: [] -- destination_id: 5695db50e954a874ca44ce63 +- id: 5695db50e954a874ca44ce63 display_name: Kochava name: Kochava slug: kochava @@ -23208,7 +23208,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5d02baa1e63a2e0001117fb2 +- id: 5d02baa1e63a2e0001117fb2 display_name: Kubit name: Kubit slug: kubit @@ -23264,7 +23264,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c73feeb9947e900010a60ac +- id: 5c73feeb9947e900010a60ac display_name: Kustomer name: Kustomer slug: kustomer @@ -23327,7 +23327,7 @@ items: label: Org Pod actions: [] presets: [] -- destination_id: 5d336888e0cb6900011f1188 +- id: 5d336888e0cb6900011f1188 display_name: Lantern name: Lantern slug: lantern @@ -23381,7 +23381,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eece +- id: 54521fd925e721e32a72eece display_name: Leanplum name: Leanplum slug: leanplum @@ -23489,7 +23489,7 @@ items: label: Use Leanplum Sender ID actions: [] presets: [] -- destination_id: 5d67475d07d95bd4a7937ea7 +- id: 5d67475d07d95bd4a7937ea7 display_name: Learndot name: Learndot slug: learndot @@ -23541,7 +23541,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eecd +- id: 54521fd925e721e32a72eecd display_name: Librato name: Librato slug: librato @@ -23601,7 +23601,7 @@ items: label: Token actions: [] presets: [] -- destination_id: 59526b3170a3e552b957552b +- id: 59526b3170a3e552b957552b display_name: LinkedIn Insight Tag name: LinkedIn Insight Tag slug: linkedin-insight-tag @@ -23656,7 +23656,7 @@ items: label: Linkedin Data Partner ID actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eecf +- id: 54521fd925e721e32a72eecf display_name: LiveChat name: LiveChat slug: livechat @@ -23727,7 +23727,7 @@ items: label: Record live chat events. actions: [] presets: [] -- destination_id: 614b4ae2c23ae1523e9d5bef +- id: 614b4ae2c23ae1523e9d5bef display_name: LiveIntent Audiences name: LiveIntent Audiences slug: liveintent-audiences @@ -23798,7 +23798,7 @@ items: label: Audiences actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eed0 +- id: 54521fd925e721e32a72eed0 display_name: Localytics name: Localytics slug: localytics @@ -23891,7 +23891,7 @@ items: label: Use Organization Scope for Attributes actions: [] presets: [] -- destination_id: 5fac1adf1aa5eb4a01168950 +- id: 5fac1adf1aa5eb4a01168950 display_name: Lou name: Lou slug: lou @@ -23948,7 +23948,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eed1 +- id: 54521fd925e721e32a72eed1 display_name: Lucky Orange name: Lucky Orange slug: lucky-orange @@ -24003,7 +24003,7 @@ items: label: Site ID actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eed2 +- id: 54521fd925e721e32a72eed2 display_name: Lytics name: Lytics slug: lytics @@ -24091,7 +24091,7 @@ items: label: Stream actions: [] presets: [] -- destination_id: 5cdc9409f9de1d00017e3e3f +- id: 5cdc9409f9de1d00017e3e3f display_name: mabl name: mabl slug: mabl @@ -24145,7 +24145,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 55a9343b0a20f4e22f0fb3ca +- id: 55a9343b0a20f4e22f0fb3ca display_name: Madkudu name: Madkudu slug: madkudu @@ -24198,7 +24198,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eed3 +- id: 54521fd925e721e32a72eed3 display_name: MailChimp name: MailChimp slug: mailchimp @@ -24279,7 +24279,7 @@ items: label: Audience ID actions: [] presets: [] -- destination_id: 55b27b5d0a20f4e22f0fb3d5 +- id: 55b27b5d0a20f4e22f0fb3d5 display_name: Mailjet name: Mailjet slug: mailjet @@ -24337,7 +24337,7 @@ items: label: List ID actions: [] presets: [] -- destination_id: 5cd3f02701645a0001cf49a0 +- id: 5cd3f02701645a0001cf49a0 display_name: Mammoth name: Mammoth slug: mammoth @@ -24390,7 +24390,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5b73515e6170785a5e62978c +- id: 5b73515e6170785a5e62978c display_name: Marketo Static Lists name: Marketo Static Lists slug: marketo-static-lists @@ -24458,7 +24458,7 @@ items: label: Folder actions: [] presets: [] -- destination_id: 58f8f55a70a3e552b955a444 +- id: 58f8f55a70a3e552b955a444 display_name: Marketo V2 name: Marketo V2 slug: marketo-v2 @@ -24586,7 +24586,7 @@ items: label: Marketo Custom Fields actions: [] presets: [] -- destination_id: 6096714984bdd26c427c9250 +- id: 6096714984bdd26c427c9250 display_name: Markettailor name: Markettailor slug: markettailor @@ -24642,7 +24642,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fda25e721e32a72eee7 +- id: 54521fda25e721e32a72eee7 display_name: Matomo name: Matomo slug: matomo @@ -24720,7 +24720,7 @@ items: label: Server URL actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eed4 +- id: 54521fd925e721e32a72eed4 display_name: MediaMath name: MediaMath slug: mediamath @@ -24790,7 +24790,7 @@ items: label: Events actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eed5 +- id: 54521fd925e721e32a72eed5 display_name: Millennial Media name: Millennial Media slug: millennial-media @@ -24848,7 +24848,7 @@ items: label: Events actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eed6 +- id: 54521fd925e721e32a72eed6 display_name: Mixpanel name: Mixpanel slug: mixpanel @@ -25090,7 +25090,7 @@ items: label: Track Named Pages to Mixpanel actions: [] presets: [] -- destination_id: 5d65e2aa4da0623cbe367a05 +- id: 5d65e2aa4da0623cbe367a05 display_name: Modern Pricing name: Modern Pricing slug: modern-pricing @@ -25146,7 +25146,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 55b280290a20f4e22f0fb3d6 +- id: 55b280290a20f4e22f0fb3d6 display_name: MoEngage name: MoEngage slug: moengage @@ -25219,7 +25219,7 @@ items: label: Enable Debug Logging actions: [] presets: [] -- destination_id: 5ce828fe272bf500019d9dbc +- id: 5ce828fe272bf500019d9dbc display_name: Moesif API Analytics name: Moesif API Analytics slug: moesif-api-analytics @@ -25277,7 +25277,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eede +- id: 54521fd925e721e32a72eede display_name: Monetate name: Monetate slug: monetate @@ -25332,7 +25332,7 @@ items: label: Retail actions: [] presets: [] -- destination_id: 5ac4ee052dc77f7e54322e3f +- id: 5ac4ee052dc77f7e54322e3f display_name: Moosend name: Moosend slug: moosend @@ -25384,7 +25384,7 @@ items: label: Website Id (GUID) actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eeda +- id: 54521fd925e721e32a72eeda display_name: Mouseflow name: Mouseflow slug: mouseflow @@ -25442,7 +25442,7 @@ items: label: Mouseflow HTML Delay actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eedf +- id: 54521fd925e721e32a72eedf display_name: MouseStats name: MouseStats slug: mousestats @@ -25497,7 +25497,7 @@ items: label: Account Number actions: [] presets: [] -- destination_id: 5a611c86c0ff800001f6c431 +- id: 5a611c86c0ff800001f6c431 display_name: Movable Ink name: Movable Ink slug: movable-ink @@ -25551,7 +25551,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c6edab8037dcf00014f8f9b +- id: 5c6edab8037dcf00014f8f9b display_name: Mutiny name: Mutiny slug: mutiny @@ -25605,7 +25605,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eedd +- id: 54521fd925e721e32a72eedd display_name: Nanigans name: Nanigans slug: nanigans @@ -25688,7 +25688,7 @@ items: label: Send Events to Mobile Endpoint actions: [] presets: [] -- destination_id: 5ebff2ce1c6481e9795533f9 +- id: 5ebff2ce1c6481e9795533f9 display_name: Nat name: Nat slug: nat @@ -25745,7 +25745,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54bee265db31d978f14a7e21 +- id: 54bee265db31d978f14a7e21 display_name: Natero name: Natero slug: natero @@ -25819,7 +25819,7 @@ items: label: Send Key actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eedb +- id: 54521fd925e721e32a72eedb display_name: Navilytics name: Navilytics slug: navilytics @@ -25882,7 +25882,7 @@ items: label: Project ID actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eee0 +- id: 54521fd925e721e32a72eee0 display_name: New Relic name: New Relic slug: new-relic @@ -25976,7 +25976,7 @@ items: label: Send UserId and AnonymousId actions: [] presets: [] -- destination_id: 596f991a70a3e552b957f74e +- id: 596f991a70a3e552b957f74e display_name: Nielsen DCR name: Nielsen DCR slug: nielsen-dcr @@ -26132,7 +26132,7 @@ items: label: Subbrand Property Name actions: [] presets: [] -- destination_id: 5fd719e85f1569d6af775ec1 +- id: 5fd719e85f1569d6af775ec1 display_name: Noora name: Noora slug: noora @@ -26192,7 +26192,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54be95b4db31d978f14a7e0f +- id: 54be95b4db31d978f14a7e0f display_name: Nudgespot name: Nudgespot slug: nudgespot @@ -26254,7 +26254,7 @@ items: label: Javascript API Key actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eedc +- id: 54521fd925e721e32a72eedc display_name: Olark name: Olark slug: olark @@ -26351,7 +26351,7 @@ items: label: Log custom events from analytics.track() to the Olark chat console actions: [] presets: [] -- destination_id: 60b6a5b69fec493efbd3c64c +- id: 60b6a5b69fec493efbd3c64c display_name: OneSignal (New) name: OneSignal (New) slug: onesignal-new @@ -26412,7 +26412,7 @@ items: label: App Id actions: [] presets: [] -- destination_id: 59d3b44b8f1480000104be6b +- id: 59d3b44b8f1480000104be6b display_name: Optimizely Full Stack name: Optimizely Full Stack slug: optimizely-full-stack @@ -26585,7 +26585,7 @@ items: label: Use User ID actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eee3 +- id: 54521fd925e721e32a72eee3 display_name: Optimizely Web name: Optimizely Web slug: optimizely-web @@ -26715,7 +26715,7 @@ items: label: Send experiment data to other tools as an identify call (not recommended) actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eee1 +- id: 54521fd925e721e32a72eee1 display_name: Pardot name: Pardot slug: pardot @@ -26835,7 +26835,7 @@ items: label: Primary Business Unit Id actions: [] presets: [] -- destination_id: 558c9f7b0a20f4e22f0fb3bc +- id: 558c9f7b0a20f4e22f0fb3bc display_name: Parsely name: Parsely slug: parsely @@ -26927,7 +26927,7 @@ items: label: Track Events actions: [] presets: [] -- destination_id: 575ef2fc80412f644ff139be +- id: 575ef2fc80412f644ff139be display_name: Pendo name: Pendo slug: pendo @@ -26985,7 +26985,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fda25e721e32a72eee5 +- id: 54521fda25e721e32a72eee5 display_name: Perfect Audience name: Perfect Audience slug: perfect-audience @@ -27041,7 +27041,7 @@ items: label: Advertiser ID actions: [] presets: [] -- destination_id: 60de4ee01f55f299594f38ed +- id: 60de4ee01f55f299594f38ed display_name: Perkville name: Perkville slug: perkville @@ -27129,7 +27129,7 @@ items: label: Send email actions: [] presets: [] -- destination_id: 5c75e3ca088b680001eb30fa +- id: 5c75e3ca088b680001eb30fa display_name: PersistIQ name: PersistIQ slug: persistiq @@ -27184,7 +27184,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5d4dd5b989eda01a09b5cdb1 +- id: 5d4dd5b989eda01a09b5cdb1 display_name: Personas Display & Video 360 name: Personas Display & Video 360 slug: personas-display-video-360 @@ -27228,7 +27228,7 @@ items: settings: [] actions: [] presets: [] -- destination_id: 5a4d24dcc5836400017188f6 +- id: 5a4d24dcc5836400017188f6 display_name: Personas Facebook Custom Audiences name: Personas Facebook Custom Audiences slug: personas-facebook-custom-audiences @@ -27288,7 +27288,7 @@ items: label: Special Ad Category actions: [] presets: [] -- destination_id: 5c6de64f037dcf00014f8f84 +- id: 5c6de64f037dcf00014f8f84 display_name: Personyze name: Personyze slug: personyze @@ -27346,7 +27346,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fda25e721e32a72eee6 +- id: 54521fda25e721e32a72eee6 display_name: Pingdom name: Pingdom slug: pingdom @@ -27406,7 +27406,7 @@ items: label: Real User Monitoring ID actions: [] presets: [] -- destination_id: 5f3ada4acea48a461353d5af +- id: 5f3ada4acea48a461353d5af display_name: Pinterest Audiences name: Pinterest Audiences slug: pinterest-audiences @@ -27462,7 +27462,7 @@ items: label: account actions: [] presets: [] -- destination_id: 59526d7f70a3e552b957555c +- id: 59526d7f70a3e552b957555c display_name: Pinterest Tag name: Pinterest Tag slug: pinterest-tag @@ -27551,7 +27551,7 @@ items: label: Enable Enhanced Match to on Page Load actions: [] presets: [] -- destination_id: 55bbefd70a20f4e22f0fb3e5 +- id: 55bbefd70a20f4e22f0fb3e5 display_name: Planhat name: Planhat slug: planhat @@ -27609,7 +27609,7 @@ items: label: subdomain actions: [] presets: [] -- destination_id: 5d25eddde3ff660001b3adda +- id: 5d25eddde3ff660001b3adda display_name: Podsights name: Podsights slug: podsights @@ -27661,7 +27661,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 56b17633e954a874ca44d3df +- id: 56b17633e954a874ca44d3df display_name: Pointillist name: Pointillist slug: pointillist @@ -27713,7 +27713,7 @@ items: label: API Token actions: [] presets: [] -- destination_id: 5ece242d61055a0b1bb2e103 +- id: 5ece242d61055a0b1bb2e103 display_name: PostHog name: PostHog slug: posthog @@ -27777,7 +27777,7 @@ items: label: PostHog instance actions: [] presets: [] -- destination_id: 5fe9e8d3dc1fbccfdfbd1490 +- id: 5fe9e8d3dc1fbccfdfbd1490 display_name: ProductBird name: ProductBird slug: productbird @@ -27832,7 +27832,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5d24e7d30417730001556db0 +- id: 5d24e7d30417730001556db0 display_name: ProfitWell name: ProfitWell slug: profitwell @@ -27897,7 +27897,7 @@ items: label: Site Type actions: [] presets: [] -- destination_id: 55b6983e0a20f4e22f0fb3da +- id: 55b6983e0a20f4e22f0fb3da display_name: Promoter.io name: Promoter.io slug: promoter-io @@ -27949,7 +27949,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c4ba7167eed0c0001977f25 +- id: 5c4ba7167eed0c0001977f25 display_name: Proof Experiences name: Proof Experiences slug: proof-experiences @@ -28005,7 +28005,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 6116daebcc926a434fe41bb3 +- id: 6116daebcc926a434fe41bb3 display_name: ProsperStack name: ProsperStack slug: prosperstack @@ -28060,7 +28060,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fda25e721e32a72eee8 +- id: 54521fda25e721e32a72eee8 display_name: Qualaroo name: Qualaroo slug: qualaroo @@ -28133,7 +28133,7 @@ items: label: Record Events to Qualaroo actions: [] presets: [] -- destination_id: 54521fda25e721e32a72eeeb +- id: 54521fda25e721e32a72eeeb display_name: Quantcast name: Quantcast slug: quantcast @@ -28219,7 +28219,7 @@ items: label: P-Code actions: [] presets: [] -- destination_id: 54521fd725e721e32a72eec2 +- id: 54521fd725e721e32a72eec2 display_name: QuanticMind name: QuanticMind slug: quanticmind @@ -28303,7 +28303,7 @@ items: label: Use Order Id For Server Side Attribution actions: [] presets: [] -- destination_id: 5952698570a3e552b9575519 +- id: 5952698570a3e552b9575519 display_name: Quora Conversion Pixel name: Quora Conversion Pixel slug: quora-conversion-pixel @@ -28371,7 +28371,7 @@ items: label: Quora Conversion Pixel Key actions: [] presets: [] -- destination_id: 579aa12580412f644ff19fe5 +- id: 579aa12580412f644ff19fe5 display_name: RadiumOne Connect name: RadiumOne Connect slug: radiumone-connect @@ -28428,7 +28428,7 @@ items: label: Application ID actions: [] presets: [] -- destination_id: 558c9d1a0a20f4e22f0fb3bb +- id: 558c9d1a0a20f4e22f0fb3bb display_name: Ramen name: Ramen slug: ramen @@ -28487,7 +28487,7 @@ items: label: Organization Id actions: [] presets: [] -- destination_id: 6095391bd839b62fca8a8606 +- id: 6095391bd839b62fca8a8606 display_name: Recombee AI name: Recombee AI slug: recombee-ai @@ -28577,7 +28577,7 @@ items: label: Track Events Mapping actions: [] presets: [] -- destination_id: 5cacbf88fa2aed000104edcc +- id: 5cacbf88fa2aed000104edcc display_name: Refersion name: Refersion slug: refersion @@ -28635,7 +28635,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c9a968bd217dc000108159a +- id: 5c9a968bd217dc000108159a display_name: Refiner name: Refiner slug: refiner @@ -28687,7 +28687,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5f33e746fad0d620b8a4b144 +- id: 5f33e746fad0d620b8a4b144 display_name: Regal Voice name: Regal Voice slug: regal-voice @@ -28741,7 +28741,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5850d8b680412f644ff55df2 +- id: 5850d8b680412f644ff55df2 display_name: Repeater name: Repeater slug: repeater @@ -28803,7 +28803,7 @@ items: label: Write Keys actions: [] presets: [] -- destination_id: 588d348c80412f644ff611d1 +- id: 588d348c80412f644ff611d1 display_name: Responsys name: Responsys slug: responsys @@ -28930,7 +28930,7 @@ items: label: Username actions: [] presets: [] -- destination_id: 5eb91ce4f1eb124fa7445dce +- id: 5eb91ce4f1eb124fa7445dce display_name: Retently name: Retently slug: retently @@ -28992,7 +28992,7 @@ items: label: Map Retently campaigns with Segment events actions: [] presets: [] -- destination_id: 5f287bfa332cce0b1ed18331 +- id: 5f287bfa332cce0b1ed18331 display_name: Retina name: Retina slug: retina @@ -29047,7 +29047,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5ddd4f68758f3b16e86a6332 +- id: 5ddd4f68758f3b16e86a6332 display_name: Richpanel name: Richpanel slug: richpanel @@ -29111,7 +29111,7 @@ items: label: API Secret actions: [] presets: [] -- destination_id: 59a476a470a3e552b9594307 +- id: 59a476a470a3e552b9594307 display_name: Rockerbox name: Rockerbox slug: rockerbox @@ -29185,7 +29185,7 @@ items: label: Pixel Code actions: [] presets: [] -- destination_id: 54521fda25e721e32a72eeed +- id: 54521fda25e721e32a72eeed display_name: Rollbar name: Rollbar slug: rollbar @@ -29301,7 +29301,7 @@ items: label: Enable Source Map actions: [] presets: [] -- destination_id: 5ee1302124d817af4c8341a2 +- id: 5ee1302124d817af4c8341a2 display_name: Sailthru v2 name: Sailthru v2 slug: sailthru-v2 @@ -29378,7 +29378,7 @@ items: label: Track Screen events as Pageviews actions: [] presets: [] -- destination_id: 5d835f71811b923a6883c2eb +- id: 5d835f71811b923a6883c2eb display_name: Salescamp CRM name: Salescamp CRM slug: salescamp-crm @@ -29442,7 +29442,7 @@ items: label: 'Events ' actions: [] presets: [] -- destination_id: 54521fda25e721e32a72eeef +- id: 54521fda25e721e32a72eeef display_name: Salesforce name: Salesforce slug: salesforce @@ -29582,7 +29582,7 @@ items: label: Version actions: [] presets: [] -- destination_id: 54d190dbdb31d978f14a903b +- id: 54d190dbdb31d978f14a903b display_name: Salesforce Marketing Cloud name: Salesforce Marketing Cloud slug: salesforce-marketing-cloud @@ -29706,7 +29706,7 @@ items: label: Subdomain actions: [] presets: [] -- destination_id: 560a21320a20f4e22f0fb5ca +- id: 560a21320a20f4e22f0fb5ca display_name: Salesmachine name: Salesmachine slug: salesmachine @@ -29766,7 +29766,7 @@ items: label: API secret actions: [] presets: [] -- destination_id: 54c02a5adb31d978f14a7f6f +- id: 54c02a5adb31d978f14a7f6f display_name: SatisMeter name: SatisMeter slug: satismeter @@ -29837,7 +29837,7 @@ items: label: Token actions: [] presets: [] -- destination_id: 5c6ddad405424a0001ecff86 +- id: 5c6ddad405424a0001ecff86 display_name: Savio name: Savio slug: savio @@ -29892,7 +29892,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c6cb84c9d413f0001804a42 +- id: 5c6cb84c9d413f0001804a42 display_name: ScopeAI name: ScopeAI slug: scopeai @@ -29947,7 +29947,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 60ae0d1120fec1896fa8ff8b +- id: 60ae0d1120fec1896fa8ff8b display_name: Screeb name: Screeb slug: screeb @@ -30003,7 +30003,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5d098d7fd748d200010cd081 +- id: 5d098d7fd748d200010cd081 display_name: Scuba Analytics name: Scuba Analytics slug: scuba-analytics @@ -30075,7 +30075,7 @@ items: label: PLATFORM actions: [] presets: [] -- destination_id: 557b4b410a20f4e22f0fb3a9 +- id: 557b4b410a20f4e22f0fb3a9 display_name: Seg name: Seg slug: seg @@ -30128,7 +30128,7 @@ items: label: Website Id actions: [] presets: [] -- destination_id: 5ec2b3adf7d3322ea12f3c04 +- id: 5ec2b3adf7d3322ea12f3c04 display_name: SegMetrics name: SegMetrics slug: segmetrics @@ -30196,7 +30196,7 @@ items: label: SegMetrics Account ID actions: [] presets: [] -- destination_id: 5e14bf9f1729d9e6ded001f6 +- id: 5e14bf9f1729d9e6ded001f6 display_name: Selligent Marketing Cloud name: Selligent Marketing Cloud slug: selligent-marketing-cloud @@ -30308,7 +30308,7 @@ items: label: SMC Admin URL actions: [] presets: [] -- destination_id: 54521fda25e721e32a72eef0 +- id: 54521fda25e721e32a72eef0 display_name: Sentry name: Sentry slug: sentry @@ -30455,7 +30455,7 @@ items: label: Whitelist Urls actions: [] presets: [] -- destination_id: 5cb99b9cb26aa60001c3a896 +- id: 5cb99b9cb26aa60001c3a896 display_name: Serenytics name: Serenytics slug: serenytics @@ -30510,7 +30510,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fda25e721e32a72eef2 +- id: 54521fda25e721e32a72eef2 display_name: ShareASale name: ShareASale slug: shareasale @@ -30581,7 +30581,7 @@ items: label: Use total as amount actions: [] presets: [] -- destination_id: 5a947eee1ad6310001435883 +- id: 5a947eee1ad6310001435883 display_name: Sherlock name: Sherlock slug: sherlock @@ -30632,7 +30632,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5fbfbfc64832c185a5fd3faf +- id: 5fbfbfc64832c185a5fd3faf display_name: SIGNL4 Alerting name: SIGNL4 Alerting slug: signl4-alerting @@ -30757,7 +30757,7 @@ items: label: Title actions: [] presets: [] -- destination_id: 55d3c70e0a20f4e22f0fb3eb +- id: 55d3c70e0a20f4e22f0fb3eb display_name: SimpleReach name: SimpleReach slug: simplereach @@ -30813,7 +30813,7 @@ items: label: Publisher ID actions: [] presets: [] -- destination_id: 5c768ec31413290001ebdd2e +- id: 5c768ec31413290001ebdd2e display_name: Singular name: Singular slug: singular @@ -30881,7 +30881,7 @@ items: label: Secret actions: [] presets: [] -- destination_id: 56748689e954a874ca44ccfb +- id: 56748689e954a874ca44ccfb display_name: Slack name: Slack slug: slack @@ -30970,7 +30970,7 @@ items: label: Whitelisted Traits actions: [] presets: [] -- destination_id: 5f7dd8e302173ff732db5cc4 +- id: 5f7dd8e302173ff732db5cc4 display_name: Slack (Actions) name: Slack (Actions) slug: actions-slack @@ -31087,7 +31087,7 @@ items: dynamic: false allowNull: false presets: [] -- destination_id: 5ca241b892f10000016b5696 +- id: 5ca241b892f10000016b5696 display_name: SlicingDice name: SlicingDice slug: slicingdice @@ -31143,7 +31143,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c9b332f4a9ac00001e97649 +- id: 5c9b332f4a9ac00001e97649 display_name: Smartlook name: Smartlook slug: smartlook @@ -31203,7 +31203,7 @@ items: label: Project Key actions: [] presets: [] -- destination_id: 5e586181995f166e239fd271 +- id: 5e586181995f166e239fd271 display_name: Snapboard name: Snapboard slug: snapboard @@ -31257,7 +31257,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5f289f7639d45a397a1fb880 +- id: 5f289f7639d45a397a1fb880 display_name: Snapchat Audiences name: Snapchat Audiences slug: snapchat-audiences @@ -31310,7 +31310,7 @@ items: label: account actions: [] presets: [] -- destination_id: 54521fdb25e721e32a72eef6 +- id: 54521fdb25e721e32a72eef6 display_name: SnapEngage name: SnapEngage slug: snapengage @@ -31375,7 +31375,7 @@ items: label: Record live chat events. actions: [] presets: [] -- destination_id: 54521fdb25e721e32a72eef3 +- id: 54521fdb25e721e32a72eef3 display_name: Spinnakr name: Spinnakr slug: spinnakr @@ -31427,7 +31427,7 @@ items: label: Site Id actions: [] presets: [] -- destination_id: 5c6e2b9d79daff00017ec990 +- id: 5c6e2b9d79daff00017ec990 display_name: Split name: Split slug: split @@ -31488,7 +31488,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 61d8c74d174a9acd0e138b31 +- id: 61d8c74d174a9acd0e138b31 display_name: Sprig (Actions) name: Sprig (Actions) slug: sprig-web @@ -31724,7 +31724,7 @@ items: anonymousId: '@path': $.anonymousId trigger: type = "track" and event != "Signed Out" -- destination_id: 5f2c35239094d175b6485eb1 +- id: 5f2c35239094d175b6485eb1 display_name: Sprig Cloud name: Sprig Cloud slug: sprig-cloud @@ -31781,7 +31781,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5fa3ce52d18ccdfb384b13f7 +- id: 5fa3ce52d18ccdfb384b13f7 display_name: Startdeliver name: Startdeliver slug: startdeliver @@ -31843,7 +31843,7 @@ items: label: Startdeliver user custom field to match on actions: [] presets: [] -- destination_id: 613ba8c0114797213a8eff94 +- id: 613ba8c0114797213a8eff94 display_name: Statsig name: Statsig slug: statsig @@ -31897,7 +31897,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5851bee480412f644ff56150 +- id: 5851bee480412f644ff56150 display_name: Stitch Data name: Stitch Data slug: stitch-data @@ -31956,7 +31956,7 @@ items: label: Endpoint actions: [] presets: [] -- destination_id: 5f354f1a928763feb8caf724 +- id: 5f354f1a928763feb8caf724 display_name: Stonly name: Stonly slug: stonly @@ -32013,7 +32013,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5e31eed10689db7d78002b54 +- id: 5e31eed10689db7d78002b54 display_name: Stories name: Stories slug: stories @@ -32070,7 +32070,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5f38f398c30a8412cb23b628 +- id: 5f38f398c30a8412cb23b628 display_name: Stormly name: Stormly slug: stormly @@ -32146,7 +32146,7 @@ items: label: Track pages automatically actions: [] presets: [] -- destination_id: 5c940e99e3498f000177880c +- id: 5c940e99e3498f000177880c display_name: Strikedeck name: Strikedeck slug: strikedeck @@ -32204,7 +32204,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c922eae1761cd0001a71707 +- id: 5c922eae1761cd0001a71707 display_name: Survicate name: Survicate slug: survicate @@ -32262,7 +32262,7 @@ items: label: Workspace Key actions: [] presets: [] -- destination_id: 59c467ba9e26eb0001380743 +- id: 59c467ba9e26eb0001380743 display_name: Swrve name: Swrve slug: swrve @@ -32320,7 +32320,7 @@ items: label: '' actions: [] presets: [] -- destination_id: 54521fd525e721e32a72eea6 +- id: 54521fd525e721e32a72eea6 display_name: Talkable name: Talkable slug: talkable @@ -32441,7 +32441,7 @@ items: label: Site ID actions: [] presets: [] -- destination_id: 5de7c705e7d93d5e24742a04 +- id: 5de7c705e7d93d5e24742a04 display_name: Talon.One name: Talon.One slug: talonone @@ -32513,7 +32513,7 @@ items: label: Custom Attributes actions: [] presets: [] -- destination_id: 5c8ad1622b2a130001a7664a +- id: 5c8ad1622b2a130001a7664a display_name: Tamber name: Tamber slug: tamber @@ -32569,7 +32569,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fdb25e721e32a72eef5 +- id: 54521fdb25e721e32a72eef5 display_name: Taplytics name: Taplytics slug: taplytics @@ -32682,7 +32682,7 @@ items: label: Enable Turn Menu (Android) actions: [] presets: [] -- destination_id: 54521fdb25e721e32a72eef7 +- id: 54521fdb25e721e32a72eef7 display_name: Tapstream name: Tapstream slug: tapstream @@ -32778,7 +32778,7 @@ items: label: Track Named Pages to Tapstream actions: [] presets: [] -- destination_id: 615cae349d109d6b7496a131 +- id: 615cae349d109d6b7496a131 display_name: TikTok Conversions name: TikTok Conversions slug: tiktok-conversions @@ -33620,7 +33620,7 @@ items: '@path': $.product_id event: AddToWishlist trigger: event = "Product Added to Wishlist" -- destination_id: 54521fdb25e721e32a72eefa +- id: 54521fdb25e721e32a72eefa display_name: Totango name: Totango slug: totango @@ -33711,7 +33711,7 @@ items: label: Track Named Pages to Totango actions: [] presets: [] -- destination_id: 54521fdb25e721e32a72eef9 +- id: 54521fdb25e721e32a72eef9 display_name: Track JS name: Track JS slug: track-js @@ -33857,7 +33857,7 @@ items: label: Window Enabled actions: [] presets: [] -- destination_id: 5cd62e29299eb40001acff12 +- id: 5cd62e29299eb40001acff12 display_name: Trackier name: Trackier slug: trackier @@ -33910,7 +33910,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 569007b3e954a874ca44cd4e +- id: 569007b3e954a874ca44cd4e display_name: Tractionboard name: Tractionboard slug: tractionboard @@ -33962,7 +33962,7 @@ items: label: Token ID actions: [] presets: [] -- destination_id: 5c6f5f0b037dcf00014f8fb0 +- id: 5c6f5f0b037dcf00014f8fb0 display_name: TrafficGuard name: TrafficGuard slug: trafficguard @@ -34020,7 +34020,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 56b8444d80412f644ff12c30 +- id: 56b8444d80412f644ff12c30 display_name: tray.io name: tray.io slug: tray-io @@ -34086,7 +34086,7 @@ items: label: Workflow Urls (max 10) actions: [] presets: [] -- destination_id: 55a002660a20f4e22f0fb3c2 +- id: 55a002660a20f4e22f0fb3c2 display_name: Treasure Data name: Treasure Data slug: treasure-data @@ -34143,7 +34143,7 @@ items: label: Database Name actions: [] presets: [] -- destination_id: 5c6e52858392d6000101d4c1 +- id: 5c6e52858392d6000101d4c1 display_name: Trustpilot name: Trustpilot slug: trustpilot @@ -34200,7 +34200,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eed7 +- id: 54521fd925e721e32a72eed7 display_name: TUNE name: TUNE slug: tune @@ -34329,7 +34329,7 @@ items: label: Custom Item Attributes actions: [] presets: [] -- destination_id: 54521fdb25e721e32a72eefc +- id: 54521fdb25e721e32a72eefc display_name: TV Squared name: TV Squared slug: tv-squared @@ -34408,7 +34408,7 @@ items: label: Event Whitelist actions: [] presets: [] -- destination_id: 54521fdc25e721e32a72eeff +- id: 54521fdc25e721e32a72eeff display_name: Twitter Ads name: Twitter Ads slug: twitter-ads @@ -34495,7 +34495,7 @@ items: label: Universal Website Tag Pixel ID actions: [] presets: [] -- destination_id: 5c707b074876c300018c37ab +- id: 5c707b074876c300018c37ab display_name: Unwaffle name: Unwaffle slug: unwaffle @@ -34550,7 +34550,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c6ce090721aa60001ad878f +- id: 5c6ce090721aa60001ad878f display_name: Upcall name: Upcall slug: upcall @@ -34606,7 +34606,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 59c93d8a3c0414000129bcb5 +- id: 59c93d8a3c0414000129bcb5 display_name: User.com name: User.com slug: user-com @@ -34660,7 +34660,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c742629088b680001eb30bb +- id: 5c742629088b680001eb30bb display_name: UserIQ name: UserIQ slug: useriq @@ -34717,7 +34717,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5c75396a02254a0001da2a55 +- id: 5c75396a02254a0001da2a55 display_name: Userlist name: Userlist slug: userlist @@ -34771,7 +34771,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5ca9d0c1b7119500014381d3 +- id: 5ca9d0c1b7119500014381d3 display_name: Userpilot name: Userpilot slug: userpilot @@ -34828,7 +34828,7 @@ items: label: App Token actions: [] presets: [] -- destination_id: 54521fdc25e721e32a72ef00 +- id: 54521fdc25e721e32a72ef00 display_name: UserVoice name: UserVoice slug: uservoice @@ -35012,7 +35012,7 @@ items: label: Trigger Position actions: [] presets: [] -- destination_id: 6099bbbc3d51136d7d293b0c +- id: 6099bbbc3d51136d7d293b0c display_name: Variance name: Variance slug: variance @@ -35077,7 +35077,7 @@ items: label: Webhook URL actions: [] presets: [] -- destination_id: 54521fdc25e721e32a72ef03 +- id: 54521fdc25e721e32a72ef03 display_name: Vero name: Vero slug: vero @@ -35146,7 +35146,7 @@ items: label: Auth Token actions: [] presets: [] -- destination_id: 5e8761995f50ba6c68e5ea53 +- id: 5e8761995f50ba6c68e5ea53 display_name: Vespucci name: Vespucci slug: vespucci @@ -35199,7 +35199,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5ff67d3d4b6491271c0deae0 +- id: 5ff67d3d4b6491271c0deae0 display_name: Vidora name: Vidora slug: vidora @@ -35256,7 +35256,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fdc25e721e32a72ef01 +- id: 54521fdc25e721e32a72ef01 display_name: Visual Website Optimizer name: Visual Website Optimizer slug: visual-website-optimizer @@ -35397,7 +35397,7 @@ items: label: Use Existing JQuery actions: [] presets: [] -- destination_id: 5c5239a982bdf80001a6ac7d +- id: 5c5239a982bdf80001a6ac7d display_name: Vitally name: Vitally slug: vitally @@ -35449,7 +35449,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 5e42baaecf559c535c8cbe97 +- id: 5e42baaecf559c535c8cbe97 display_name: Voucherify name: Voucherify slug: voucherify @@ -35572,7 +35572,7 @@ items: label: Track Only Existing Customers actions: [] presets: [] -- destination_id: 5d25d6e0885427000195bf80 +- id: 5d25d6e0885427000195bf80 display_name: WalkMe name: WalkMe slug: walkme @@ -35657,7 +35657,7 @@ items: label: WalkMe system ID actions: [] presets: [] -- destination_id: 54521fdc25e721e32a72ef02 +- id: 54521fdc25e721e32a72ef02 display_name: WebEngage name: WebEngage slug: webengage @@ -35733,7 +35733,7 @@ items: label: License Code actions: [] presets: [] -- destination_id: 54521fdc25e721e32a72ef04 +- id: 54521fdc25e721e32a72ef04 display_name: Webhooks name: Webhooks slug: webhooks @@ -35808,7 +35808,7 @@ items: label: Shared Secret actions: [] presets: [] -- destination_id: 55283a150a20f4e22f0fb37e +- id: 55283a150a20f4e22f0fb37e display_name: Whale Alerts name: Whale Alerts slug: whale-alerts @@ -35858,7 +35858,7 @@ items: label: CustomerID actions: [] presets: [] -- destination_id: 552719e10a20f4e22f0fb37c +- id: 552719e10a20f4e22f0fb37c display_name: Whale Watch name: Whale Watch slug: whale-watch @@ -35908,7 +35908,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 564e4f97e954a874ca44cbd3 +- id: 564e4f97e954a874ca44cbd3 display_name: Wigzo name: Wigzo slug: wigzo @@ -35965,7 +35965,7 @@ items: label: Organization Token actions: [] presets: [] -- destination_id: 5dca74a6907ce1604b781476 +- id: 5dca74a6907ce1604b781476 display_name: Windsor name: Windsor slug: windsor @@ -36021,7 +36021,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 575f018380412f644ff139bf +- id: 575f018380412f644ff139bf display_name: Wishpond name: Wishpond slug: wishpond @@ -36085,7 +36085,7 @@ items: label: Merchant ID actions: [] presets: [] -- destination_id: 54521fdc25e721e32a72ef05 +- id: 54521fdc25e721e32a72ef05 display_name: Woopra name: Woopra slug: woopra @@ -36227,7 +36227,7 @@ items: label: Ping Interval actions: [] presets: [] -- destination_id: 54abfde6db31d978f14a77d0 +- id: 54abfde6db31d978f14a77d0 display_name: Xplenty name: Xplenty slug: xplenty @@ -36297,7 +36297,7 @@ items: label: Workspace Slug actions: [] presets: [] -- destination_id: 5ca77adcc7781c00018a459b +- id: 5ca77adcc7781c00018a459b display_name: Xtremepush name: Xtremepush slug: xtremepush @@ -36355,7 +36355,7 @@ items: label: API Key actions: [] presets: [] -- destination_id: 54521fdc25e721e32a72ef07 +- id: 54521fdc25e721e32a72ef07 display_name: Yandex Metrica name: Yandex Metrica slug: yandex-metrica @@ -36444,7 +36444,7 @@ items: label: Enable WebVisor actions: [] presets: [] -- destination_id: 54de9a11db31d978f14a9a67 +- id: 54de9a11db31d978f14a9a67 display_name: Yellowhammer name: Yellowhammer slug: yellowhammer @@ -36506,7 +36506,7 @@ items: label: Exclusion Pixel ID actions: [] presets: [] -- destination_id: 59c04bd6432df886f42eea37 +- id: 59c04bd6432df886f42eea37 display_name: Youbora name: Youbora slug: youbora @@ -36559,7 +36559,7 @@ items: label: Account Code actions: [] presets: [] -- destination_id: 56cb441480412f644ff12d37 +- id: 56cb441480412f644ff12d37 display_name: Zaius name: Zaius slug: zaius @@ -36611,7 +36611,7 @@ items: label: Tracker ID actions: [] presets: [] -- destination_id: 57c4996480412f644ff29f78 +- id: 57c4996480412f644ff29f78 display_name: Zapier name: Zapier slug: zapier @@ -36679,7 +36679,7 @@ items: label: Event Zaps actions: [] presets: [] -- destination_id: 54521fdc25e721e32a72ef06 +- id: 54521fdc25e721e32a72ef06 display_name: Zendesk name: Zendesk slug: zendesk @@ -36778,7 +36778,7 @@ items: label: Create Users as Verified actions: [] presets: [] -- destination_id: 54521fd925e721e32a72eee4 +- id: 54521fd925e721e32a72eee4 display_name: Zendesk Connect name: Zendesk Connect slug: zendesk-connect @@ -36844,7 +36844,7 @@ items: label: Public Key actions: [] presets: [] -- destination_id: 54ec1baddb31d978f14aa7f9 +- id: 54ec1baddb31d978f14aa7f9 display_name: Zopim name: Zopim slug: zopim diff --git a/src/_data/sidenav/strat.yml b/src/_data/sidenav/strat.yml index ed2dff9431..491f15a4d5 100644 --- a/src/_data/sidenav/strat.yml +++ b/src/_data/sidenav/strat.yml @@ -28,8 +28,6 @@ sections: section: - path: /connections/destinations/catalog/facebook-pixel title: Facebook Pixel destination - - path: /connections/destinations/catalog/facebook-pixel-server-side - title: Facebook Conversions API Destination (Classic) - path: /connections/destinations/catalog/actions-facebook-conversions-api title: Facebook Conversions API Destination (Actions) - path: /connections/destinations/catalog/facebook-app-events diff --git a/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md b/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md index 7001939e65..628cda01cf 100644 --- a/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md +++ b/src/connections/destinations/catalog/actions-google-enhanced-conversions/index.md @@ -24,7 +24,7 @@ The Google Enhanced Conversions destination enables you to improve the accuracy 6. On the **Settings** tab, authenticate with Google using OAuth. Click **Connect to Google Enhanced Conversions**. Follow the prompts to authenticate using OAuth, with a Google login that is a member of the Google Ads account with Enhanced Conversions enabled. 7. Follow the steps in the Destinations Actions documentation on [Customizing mappings](/docs/connections/destinations/actions/#customizing-mappings). -> info +> info "" > The Conversion ID is a global setting because it's an account-level ID that's the same for all conversion actions in your Google Ads account. The Conversion Label is unique to each conversion action and is therefore configured per Mapping. {% include components/actions-fields.html content1=conv_label section1="postConversion" content2=test_mapping section2="postConversion" %} diff --git a/src/connections/destinations/catalog/facebook-pixel-server-side/index.md b/src/connections/destinations/catalog/facebook-pixel-server-side/index.md index 65fe1adeeb..7d18e8f74b 100644 --- a/src/connections/destinations/catalog/facebook-pixel-server-side/index.md +++ b/src/connections/destinations/catalog/facebook-pixel-server-side/index.md @@ -2,6 +2,7 @@ title: Facebook Conversions API destination rewrite: true maintenance: true +maintenance-content: "A new version of this destination is available. See [Facebook Conversions API (Actions)](/docs/connections/destinations/catalog/actions-facebook-conversions-api/) for more information." beta: true redirect_from: '/connections/destinations/catalog/facebook-conversions-api/' hide-dossier: true