From d51b37cc0c2e77f160043b7f5c374069edca4765 Mon Sep 17 00:00:00 2001 From: markzegarelli Date: Thu, 15 Jun 2023 14:40:21 -0700 Subject: [PATCH 1/4] removing unused includes --- src/_includes/components/code-example.md | 13 --- src/_includes/components/faq.html | 30 ----- src/_includes/content/beta-terms.md | 1 - src/_includes/content/beta.md | 1 - src/_includes/content/context.md | 88 -------------- .../content/integrations-identify.md | 3 - src/_includes/content/integrations-track.md | 3 - src/_includes/content/personas-cmodes.md | 11 -- .../site-docs-partials/previousnames.hbs | 6 - src/_includes/content/spec-field-channel.md | 9 -- .../content/spec-field-project-id.md | 6 - src/_includes/menu/menu-config-api.html | 109 ------------------ src/_includes/menu/menu-engage.html | 43 ------- .../sidebar/destination-menu-mobile.html | 29 ----- src/_includes/sidebar/source-menu-mobile.html | 25 ---- src/_layouts/page.html | 4 - 16 files changed, 381 deletions(-) delete mode 100644 src/_includes/components/code-example.md delete mode 100644 src/_includes/components/faq.html delete mode 100644 src/_includes/content/beta-terms.md delete mode 100644 src/_includes/content/beta.md delete mode 100644 src/_includes/content/context.md delete mode 100644 src/_includes/content/integrations-identify.md delete mode 100644 src/_includes/content/integrations-track.md delete mode 100644 src/_includes/content/personas-cmodes.md delete mode 100644 src/_includes/content/site-docs-partials/previousnames.hbs delete mode 100644 src/_includes/content/spec-field-channel.md delete mode 100644 src/_includes/content/spec-field-project-id.md delete mode 100644 src/_includes/menu/menu-config-api.html delete mode 100644 src/_includes/menu/menu-engage.html delete mode 100644 src/_includes/sidebar/destination-menu-mobile.html delete mode 100644 src/_includes/sidebar/source-menu-mobile.html diff --git a/src/_includes/components/code-example.md b/src/_includes/components/code-example.md deleted file mode 100644 index 0a3613e84d..0000000000 --- a/src/_includes/components/code-example.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: code-example ---- - -{:title="Javascript"} -```js -var example = document.querySelectorAll('.example'); -``` - -{:title="HTML"} -```html -
-``` diff --git a/src/_includes/components/faq.html b/src/_includes/components/faq.html deleted file mode 100644 index 2c015afa88..0000000000 --- a/src/_includes/components/faq.html +++ /dev/null @@ -1,30 +0,0 @@ -

FAQ

- -
- {% for item in include.items %} -
- -

{{ item[0] }}

- - {% for itemEl in item[1] %} -
-
- {{ itemEl.title }} -
- - - -
-
-
- {{ itemEl.content | markdownify }} - - {% if itemEl.link %} - Read more - {% endif %} -
-
- {% endfor %} -
- {% endfor %} -
diff --git a/src/_includes/content/beta-terms.md b/src/_includes/content/beta-terms.md deleted file mode 100644 index 317f094558..0000000000 --- a/src/_includes/content/beta-terms.md +++ /dev/null @@ -1 +0,0 @@ -> **Note**: This feature is in beta, and its use is governed by the [(1) Segment First Access](https://segment.com/legal/first-access-beta-preview/) and Beta Terms and Conditions and [(2) Segment Acceptable Use Policy](https://segment.com/legal/acceptable-use-policy/). diff --git a/src/_includes/content/beta.md b/src/_includes/content/beta.md deleted file mode 100644 index deeec9921f..0000000000 --- a/src/_includes/content/beta.md +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/_includes/content/context.md b/src/_includes/content/context.md deleted file mode 100644 index 83a3fa5d87..0000000000 --- a/src/_includes/content/context.md +++ /dev/null @@ -1,88 +0,0 @@ - -Context is extra information you can record about any call to our API. It can be anything you want, like `ip` address, `userAgent`, `location`, etc. For example, our iOS SDK will automatically send `os.version` as context with each request. - -You can record context by sending an extra `context` dictionary to any of the method calls in any of our [libraries](/docs/connections/sources/). You aren't required to send context, but it can be useful if you want to access any extra information in your raw logs that isn't specific to a user, group or event. - - -## Special Context - -Some context key names have semantic meaning, and we handle them in special ways. For example, we always expect `ip` to be the current IP address of the user, and we'll use that to determine their location in certain cases. - -You should **only use** special context keys for their intended meaning. Many of them are automatically collected from our [libraries](/docs/connections/sources/), like `app.version` is from our iOS SDK. - -Here's a list of the special context keys we recognize, case insensitive: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
`app`ObjectA dictionary of information about the current application, containing `name`, `version` and `build`. This is collected automatically from our mobile libraries when possible.
`campaign`ObjectA dictionary of information about the campaign that resulted in the API call, containing `name`, `source`, `medium`, `term` and `content`. This maps directly to the common UTM campaign parameters.
`device`ObjectA dictionary of information about the device, containing `id`, `manufacturer`, `model`, `name`, `type` and `version`.
`ip`StringThe current user's IP address.
`library`ObjectA dictionary of information about the library making the requests to the API, containing `name` and `version`.
`locale`StringThe locale string for the current user, for example `en-US`.
`location`ObjectA dictionary of information about the user's current location, containing `city`, `country`, `latitude`, `longitude`, `region` and `speed`.
`network`ObjectA dictionary of information about the current network connection, containing `bluetooth`, `carrier`, `cellular` and `wifi`.
`os`ObjectA dictionary of information about the operating system, containing `name` and `version`.
`referrer`ObjectA dictionary of information about the way the user was referred to the website or app, containing `type`, `name`, `url` and `link`.
`screen`ObjectA dictionary of information about the device's screen, containing `density`, `height` and `width`.
`timezone`StringTimezones are sent as tzdata strings to add user timezone information which might be stripped from the timestamp, for e.g. `America/New_York`
`traits`ObjectA dictionary of `traits` of the current user. This is useful in cases where you need to `track` an event, but also associate information from a previous `identify` call.
`userAgent`StringThe user agent of the device making the request.
- -If you wanted to record extra information about the device, for example its `color`, you could stick that information inside the same `device` dictionary, and that will be merged with the automatically collected device information by any of our [libraries](/docs/connections/sources/). diff --git a/src/_includes/content/integrations-identify.md b/src/_includes/content/integrations-identify.md deleted file mode 100644 index 1ea624f7dd..0000000000 --- a/src/_includes/content/integrations-identify.md +++ /dev/null @@ -1,3 +0,0 @@ -### More About Identify - -To learn more about how `identify` works, check out our [Identify docs](/docs/connections/spec/identify). For example, `email` and `name` are two of our [special traits](/docs/connections/spec/identify/#traits) that we recognize semantically. \ No newline at end of file diff --git a/src/_includes/content/integrations-track.md b/src/_includes/content/integrations-track.md deleted file mode 100644 index 40ac2316f0..0000000000 --- a/src/_includes/content/integrations-track.md +++ /dev/null @@ -1,3 +0,0 @@ -### More About Track - -To learn more about how `track` works check out our [Track docs](/docs/connections/spec/track). For example, `revenue` is a [special property](/docs/connections/spec/track#special-properties) that lets you semantically describe how much money you're making. \ No newline at end of file diff --git a/src/_includes/content/personas-cmodes.md b/src/_includes/content/personas-cmodes.md deleted file mode 100644 index dbd8506afa..0000000000 --- a/src/_includes/content/personas-cmodes.md +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - -
Engage Audiences
- -The {{page.title}} consumes [Engage Audiences](/docs/engage/audiences/), and does not receive data directly from Segment Sources. Any data that you can build into an audience in Engage can be sent to this destination. diff --git a/src/_includes/content/site-docs-partials/previousnames.hbs b/src/_includes/content/site-docs-partials/previousnames.hbs deleted file mode 100644 index 2ffc83864d..0000000000 --- a/src/_includes/content/site-docs-partials/previousnames.hbs +++ /dev/null @@ -1,6 +0,0 @@ -

Adding {{ integration.name }} to the integrations object

- -To add {{ integration.name }} to the integrations JSON object (for example, to filter data from a specific source), use one of the {{ integration.previousNames.length }} valid names for this integration: -{{#each integration.previousNames}} -
  • {{this}}
  • - {{/each}} diff --git a/src/_includes/content/spec-field-channel.md b/src/_includes/content/spec-field-channel.md deleted file mode 100644 index 3dba855839..0000000000 --- a/src/_includes/content/spec-field-channel.md +++ /dev/null @@ -1,9 +0,0 @@ - - `channel` - *implicit* - String - automatically by Segment, the channel where the request originated from: `server`, `browser` or `mobile` - - In the future we may add additional channels as we add libraries, for example `console`. - - diff --git a/src/_includes/content/spec-field-project-id.md b/src/_includes/content/spec-field-project-id.md deleted file mode 100644 index 80b0ecef27..0000000000 --- a/src/_includes/content/spec-field-project-id.md +++ /dev/null @@ -1,6 +0,0 @@ - - `projectId` - *implicit* - String - Automatically set by Segment, the unique identifier for a Segment project. - diff --git a/src/_includes/menu/menu-config-api.html b/src/_includes/menu/menu-config-api.html deleted file mode 100644 index 713fef4e4c..0000000000 --- a/src/_includes/menu/menu-config-api.html +++ /dev/null @@ -1,109 +0,0 @@ - diff --git a/src/_includes/menu/menu-engage.html b/src/_includes/menu/menu-engage.html deleted file mode 100644 index 2cce5a296d..0000000000 --- a/src/_includes/menu/menu-engage.html +++ /dev/null @@ -1,43 +0,0 @@ -{% assign currentPage = page.path | downcase | replace: "/index.md" "" | replace: ".md" "" %} - - - diff --git a/src/_includes/sidebar/destination-menu-mobile.html b/src/_includes/sidebar/destination-menu-mobile.html deleted file mode 100644 index 0ddbad18fd..0000000000 --- a/src/_includes/sidebar/destination-menu-mobile.html +++ /dev/null @@ -1,29 +0,0 @@ -{% assign categories = site.data.catalog.destination_categories.items %} - -
    -
    -
    - - Choose category - - - - - -
    -
    - - -
    diff --git a/src/_includes/sidebar/source-menu-mobile.html b/src/_includes/sidebar/source-menu-mobile.html deleted file mode 100644 index 7643592220..0000000000 --- a/src/_includes/sidebar/source-menu-mobile.html +++ /dev/null @@ -1,25 +0,0 @@ -{% assign destination_categories = "Website, Mobile, Server, Ott, Cloud apps" | split: ", " %} - -
    -
    -
    - - Choose category - - - - - -
    -
    - - -
    diff --git a/src/_layouts/page.html b/src/_layouts/page.html index daee7dfb00..384280ac9a 100644 --- a/src/_layouts/page.html +++ b/src/_layouts/page.html @@ -33,10 +33,6 @@

    {% include content/plan-grid.md %} {%- endif -%} - {%- if page.beta -%} - {% include content/beta.md %} - {%- endif -%} - {%- unless page.hide_toc -%} {% include sidebar/mobile-menu-side.html %} {%- endunless -%} From 55d6fb9c856ade16adc3a19a942fa32ead18fd4d Mon Sep 17 00:00:00 2001 From: markzegarelli Date: Thu, 15 Jun 2023 15:09:41 -0700 Subject: [PATCH 2/4] remove old connection modes table --- .../content/{connection-modes.md => _connection-modes.md} | 0 src/connections/destinations/catalog/2mee/index.md | 2 +- src/connections/destinations/catalog/aampe/index.md | 2 +- src/connections/destinations/catalog/ab-smartly/index.md | 2 +- .../destinations/catalog/ab-tasty-client-side/index.md | 2 +- src/connections/destinations/catalog/activecampaign/index.md | 2 +- src/connections/destinations/catalog/adikteev/index.md | 2 +- src/connections/destinations/catalog/adjust/index.md | 2 +- src/connections/destinations/catalog/adobe-target/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 | 2 +- src/connections/destinations/catalog/airship/index.md | 2 +- src/connections/destinations/catalog/alexa/index.md | 2 +- .../destinations/catalog/amazon-eventbridge/index.md | 2 +- .../destinations/catalog/amazon-kinesis-firehose/index.md | 2 +- src/connections/destinations/catalog/amazon-kinesis/index.md | 2 +- src/connections/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/amberflo/index.md | 2 +- src/connections/destinations/catalog/anodot/index.md | 2 +- src/connections/destinations/catalog/appsflyer/index.md | 2 +- src/connections/destinations/catalog/apptimize/index.md | 2 +- src/connections/destinations/catalog/asayer/index.md | 2 +- src/connections/destinations/catalog/attribution/index.md | 2 +- src/connections/destinations/catalog/auryc/index.md | 2 +- src/connections/destinations/catalog/autopilotapp/index.md | 2 +- src/connections/destinations/catalog/autopilothq/index.md | 2 +- src/connections/destinations/catalog/azure-function/index.md | 2 +- src/connections/destinations/catalog/beamer/index.md | 2 +- src/connections/destinations/catalog/bento/index.md | 2 +- src/connections/destinations/catalog/bing-ads/index.md | 2 +- src/connections/destinations/catalog/blendo/index.md | 2 +- src/connections/destinations/catalog/blitzllama/index.md | 2 +- src/connections/destinations/catalog/branch-metrics/index.md | 2 +- src/connections/destinations/catalog/breyta-crm/index.md | 2 +- src/connections/destinations/catalog/bucket/index.md | 2 +- src/connections/destinations/catalog/bugherd/index.md | 2 +- src/connections/destinations/catalog/bugsnag/index.md | 2 +- src/connections/destinations/catalog/button/index.md | 2 +- src/connections/destinations/catalog/buzzboard/index.md | 2 +- src/connections/destinations/catalog/bytegain/index.md | 2 +- 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/churnzero/index.md | 2 +- .../destinations/catalog/clearbit-enrichment/index.md | 2 +- src/connections/destinations/catalog/clearbit-reveal/index.md | 2 +- src/connections/destinations/catalog/clearbrain/index.md | 2 +- src/connections/destinations/catalog/clicky/index.md | 2 +- src/connections/destinations/catalog/cliff/index.md | 2 +- src/connections/destinations/catalog/convertflow/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 | 2 +- .../destinations/catalog/criteo-offline-conversions/index.md | 2 +- src/connections/destinations/catalog/crowdpower/index.md | 2 +- src/connections/destinations/catalog/cruncher/index.md | 2 +- src/connections/destinations/catalog/custify/index.md | 2 +- src/connections/destinations/catalog/customer-io/index.md | 2 +- .../destinations/catalog/customersuccessbox/index.md | 2 +- src/connections/destinations/catalog/customfit-ai/index.md | 2 +- src/connections/destinations/catalog/cxense/index.md | 2 +- src/connections/destinations/catalog/datarangers/index.md | 2 +- src/connections/destinations/catalog/delighted/index.md | 2 +- src/connections/destinations/catalog/digioh/index.md | 2 +- src/connections/destinations/catalog/dreamdata-io/index.md | 2 +- src/connections/destinations/catalog/drift/index.md | 2 +- src/connections/destinations/catalog/elevio/index.md | 2 +- src/connections/destinations/catalog/emarsys/index.md | 2 +- src/connections/destinations/catalog/emma/index.md | 2 +- src/connections/destinations/catalog/enjoyhq/index.md | 2 +- src/connections/destinations/catalog/epica/index.md | 2 +- src/connections/destinations/catalog/everflow/index.md | 2 +- .../destinations/catalog/experiments-by-growthhackers/index.md | 2 +- src/connections/destinations/catalog/exponea/index.md | 2 +- src/connections/destinations/catalog/extole-platform/index.md | 2 +- .../destinations/catalog/facebook-app-events/index.md | 2 +- .../destinations/catalog/facebook-offline-conversions/index.md | 2 +- .../destinations/catalog/facebook-pixel-server-side/index.md | 2 +- src/connections/destinations/catalog/facebook-pixel/index.md | 2 +- src/connections/destinations/catalog/flagshipio/index.md | 2 +- src/connections/destinations/catalog/flurry/index.md | 2 +- src/connections/destinations/catalog/foxmetrics/index.md | 2 +- src/connections/destinations/catalog/freshmarketer/index.md | 2 +- src/connections/destinations/catalog/fullstory/index.md | 2 +- src/connections/destinations/catalog/funnelenvy/index.md | 2 +- src/connections/destinations/catalog/funnelfox/index.md | 2 +- src/connections/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/gist/index.md | 2 +- .../destinations/catalog/google-cloud-function/index.md | 2 +- src/connections/destinations/catalog/groundswell/index.md | 2 +- 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/hotjar/index.md | 2 +- src/connections/destinations/catalog/houseware/index.md | 2 +- src/connections/destinations/catalog/hubspot/index.md | 2 +- src/connections/destinations/catalog/hydra/index.md | 2 +- src/connections/destinations/catalog/ibm-ubx/index.md | 2 +- .../destinations/catalog/impact-partnership-cloud/index.md | 2 +- src/connections/destinations/catalog/impact/index.md | 2 +- src/connections/destinations/catalog/indicative/index.md | 2 +- src/connections/destinations/catalog/inflection/index.md | 2 +- src/connections/destinations/catalog/inspectlet/index.md | 2 +- src/connections/destinations/catalog/jimo/index.md | 2 +- src/connections/destinations/catalog/jivox/index.md | 2 +- src/connections/destinations/catalog/journy-io/index.md | 2 +- src/connections/destinations/catalog/june-actions/index.md | 2 +- src/connections/destinations/catalog/june/index.md | 2 +- src/connections/destinations/catalog/kable/index.md | 2 +- src/connections/destinations/catalog/kameleoon/index.md | 2 +- src/connections/destinations/catalog/kana/index.md | 2 +- src/connections/destinations/catalog/kevel/index.md | 2 +- src/connections/destinations/catalog/kissmetrics/index.md | 2 +- src/connections/destinations/catalog/kitemetrics/index.md | 2 +- src/connections/destinations/catalog/klaviyo/index.md | 2 +- src/connections/destinations/catalog/kochava/index.md | 2 +- src/connections/destinations/catalog/kubit/index.md | 2 +- src/connections/destinations/catalog/kubric/index.md | 2 +- src/connections/destinations/catalog/kustomer/index.md | 2 +- src/connections/destinations/catalog/lantern/index.md | 2 +- .../destinations/catalog/launchdarkly-events/index.md | 2 +- src/connections/destinations/catalog/leanplum/index.md | 2 +- src/connections/destinations/catalog/learndot/index.md | 2 +- .../destinations/catalog/liveintent-audiences/index.md | 2 +- src/connections/destinations/catalog/lou/index.md | 2 +- src/connections/destinations/catalog/mabl/index.md | 2 +- src/connections/destinations/catalog/mailchimp/index.md | 2 +- src/connections/destinations/catalog/mailmodo/index.md | 2 +- src/connections/destinations/catalog/mammoth/index.md | 2 +- src/connections/destinations/catalog/markettailor/index.md | 2 +- src/connections/destinations/catalog/matcha/index.md | 2 +- src/connections/destinations/catalog/matomo/index.md | 2 +- src/connections/destinations/catalog/maxia/index.md | 2 +- src/connections/destinations/catalog/metacx/index.md | 2 +- src/connections/destinations/catalog/mixpanel/index.md | 2 +- src/connections/destinations/catalog/modern-pricing/index.md | 2 +- .../destinations/catalog/moesif-api-analytics/index.md | 2 +- src/connections/destinations/catalog/mouseflow/index.md | 2 +- src/connections/destinations/catalog/movable-ink/index.md | 2 +- src/connections/destinations/catalog/msg91/index.md | 2 +- src/connections/destinations/catalog/mutiny/index.md | 2 +- src/connections/destinations/catalog/nat/index.md | 2 +- src/connections/destinations/catalog/natero/index.md | 2 +- src/connections/destinations/catalog/new-relic/index.md | 2 +- src/connections/destinations/catalog/ninetailed/index.md | 2 +- src/connections/destinations/catalog/noora/index.md | 2 +- src/connections/destinations/catalog/onesignal-new/index.md | 2 +- .../destinations/catalog/optimizely-full-stack/index.md | 2 +- src/connections/destinations/catalog/orb/index.md | 2 +- src/connections/destinations/catalog/owneriq-pixel/index.md | 2 +- src/connections/destinations/catalog/parsely/index.md | 2 +- src/connections/destinations/catalog/pendo/index.md | 2 +- src/connections/destinations/catalog/perfect-audience/index.md | 2 +- src/connections/destinations/catalog/perkville/index.md | 2 +- src/connections/destinations/catalog/persistiq/index.md | 2 +- src/connections/destinations/catalog/personyze/index.md | 2 +- src/connections/destinations/catalog/pixelme/index.md | 2 +- src/connections/destinations/catalog/podsights/index.md | 2 +- src/connections/destinations/catalog/posthog/index.md | 2 +- src/connections/destinations/catalog/productbird/index.md | 2 +- src/connections/destinations/catalog/profitwell/index.md | 2 +- src/connections/destinations/catalog/proof-experiences/index.md | 2 +- src/connections/destinations/catalog/prosperstack/index.md | 2 +- src/connections/destinations/catalog/qualaroo/index.md | 2 +- src/connections/destinations/catalog/quanticmind/index.md | 2 +- .../destinations/catalog/quora-conversion-pixel/index.md | 2 +- src/connections/destinations/catalog/recombee-ai/index.md | 2 +- src/connections/destinations/catalog/refersion/index.md | 2 +- src/connections/destinations/catalog/refiner/index.md | 2 +- src/connections/destinations/catalog/regal/index.md | 2 +- src/connections/destinations/catalog/retentive/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/saasquatch-v2/index.md | 2 +- src/connections/destinations/catalog/sailthru-v2/index.md | 2 +- src/connections/destinations/catalog/salescamp-crm/index.md | 2 +- src/connections/destinations/catalog/salesforce-dmp/index.md | 2 +- .../destinations/catalog/salesforce-marketing-cloud/index.md | 2 +- src/connections/destinations/catalog/savio/index.md | 2 +- src/connections/destinations/catalog/scopeai/index.md | 2 +- src/connections/destinations/catalog/screeb/index.md | 2 +- src/connections/destinations/catalog/scuba-analytics/index.md | 2 +- src/connections/destinations/catalog/segmetrics/index.md | 2 +- src/connections/destinations/catalog/sentry/index.md | 2 +- src/connections/destinations/catalog/serenytics/index.md | 2 +- src/connections/destinations/catalog/sherlock/index.md | 2 +- src/connections/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/skalin/index.md | 2 +- src/connections/destinations/catalog/slack/index.md | 2 +- src/connections/destinations/catalog/slicingdice/index.md | 2 +- src/connections/destinations/catalog/smartlook/index.md | 2 +- src/connections/destinations/catalog/snapboard/index.md | 2 +- src/connections/destinations/catalog/snapengage/index.md | 2 +- src/connections/destinations/catalog/spideo/index.md | 2 +- src/connections/destinations/catalog/split/index.md | 2 +- src/connections/destinations/catalog/sprig-cloud/index.md | 2 +- src/connections/destinations/catalog/startdeliver/index.md | 2 +- src/connections/destinations/catalog/statsig/index.md | 2 +- 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 | 2 +- src/connections/destinations/catalog/survicate/index.md | 2 +- src/connections/destinations/catalog/tag-injector/index.md | 2 +- src/connections/destinations/catalog/talonone/index.md | 2 +- src/connections/destinations/catalog/tamber/index.md | 2 +- src/connections/destinations/catalog/track-js/index.md | 2 +- src/connections/destinations/catalog/trackier/index.md | 2 +- src/connections/destinations/catalog/trafficguard/index.md | 2 +- src/connections/destinations/catalog/trustpilot/index.md | 2 +- src/connections/destinations/catalog/tune/index.md | 2 +- src/connections/destinations/catalog/tv-squared/index.md | 2 +- src/connections/destinations/catalog/unwaffle/index.md | 2 +- src/connections/destinations/catalog/upcall/index.md | 2 +- src/connections/destinations/catalog/useriq/index.md | 2 +- src/connections/destinations/catalog/userleap/index.md | 2 +- src/connections/destinations/catalog/userlike/index.md | 2 +- src/connections/destinations/catalog/userlist/index.md | 2 +- src/connections/destinations/catalog/userpilot/index.md | 2 +- src/connections/destinations/catalog/uservoice/index.md | 2 +- src/connections/destinations/catalog/vespucci/index.md | 2 +- src/connections/destinations/catalog/vidora/index.md | 2 +- .../destinations/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 | 2 +- src/connections/destinations/catalog/watchtower/index.md | 2 +- src/connections/destinations/catalog/webhooks/index.md | 2 +- src/connections/destinations/catalog/willow/index.md | 2 +- src/connections/destinations/catalog/windsor/index.md | 2 +- .../destinations/catalog/wootric-by-inmoment/index.md | 2 +- src/connections/destinations/catalog/worthy/index.md | 2 +- src/connections/destinations/catalog/xtremepush/index.md | 2 +- src/connections/destinations/catalog/zapier/index.md | 2 +- src/connections/destinations/catalog/zendesk/index.md | 2 +- src/connections/destinations/catalog/zopim/index.md | 2 +- src/connections/destinations/lumen/index.md | 2 +- .../libraries/mobile/apple/destination-plugins/adjust-swift.md | 2 +- .../apple/destination-plugins/facebook-app-events-swift.md | 2 +- .../mobile/apple/destination-plugins/mixpanel-swift.md | 2 +- .../kotlin-android/destination-plugins/adjust-kotlin-android.md | 2 +- .../destination-plugins/facebook-app-events-kotlin-android.md | 2 +- .../kotlin-android/destination-plugins/flurry-kotlin-android.md | 2 +- .../destination-plugins/mixpanel-kotlin-android.md | 2 +- .../react-native/destination-plugins/adjust-react-native.md | 2 +- .../destination-plugins/facebook-app-events-react-native.md | 2 +- .../react-native/destination-plugins/mixpanel-react-native.md | 2 +- src/connections/storage/catalog/google-cloud-storage/index.md | 2 +- 258 files changed, 257 insertions(+), 257 deletions(-) rename src/_includes/content/{connection-modes.md => _connection-modes.md} (100%) diff --git a/src/_includes/content/connection-modes.md b/src/_includes/content/_connection-modes.md similarity index 100% rename from src/_includes/content/connection-modes.md rename to src/_includes/content/_connection-modes.md diff --git a/src/connections/destinations/catalog/2mee/index.md b/src/connections/destinations/catalog/2mee/index.md index dbdb52227e..40d58f1f26 100644 --- a/src/connections/destinations/catalog/2mee/index.md +++ b/src/connections/destinations/catalog/2mee/index.md @@ -9,7 +9,7 @@ This destination is maintained by 2mee. For any issues with the destination, [co ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for **2mee** in the Destinations Catalog and it. diff --git a/src/connections/destinations/catalog/aampe/index.md b/src/connections/destinations/catalog/aampe/index.md index cb88137ad0..51d1236774 100644 --- a/src/connections/destinations/catalog/aampe/index.md +++ b/src/connections/destinations/catalog/aampe/index.md @@ -9,7 +9,7 @@ This destination is maintained by Aampe. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Aampe" in the Destinations Catalog, and select the "Aampe" destination. diff --git a/src/connections/destinations/catalog/ab-smartly/index.md b/src/connections/destinations/catalog/ab-smartly/index.md index 69ab594c63..96b045b817 100644 --- a/src/connections/destinations/catalog/ab-smartly/index.md +++ b/src/connections/destinations/catalog/ab-smartly/index.md @@ -19,7 +19,7 @@ Segment provides specific implementation details for A/B Smartly in the sections ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "A/B Smartly" in the Destinations Catalog, and select the "A/B Smartly" destination. diff --git a/src/connections/destinations/catalog/ab-tasty-client-side/index.md b/src/connections/destinations/catalog/ab-tasty-client-side/index.md index baeef06db8..9e6650338a 100644 --- a/src/connections/destinations/catalog/ab-tasty-client-side/index.md +++ b/src/connections/destinations/catalog/ab-tasty-client-side/index.md @@ -13,7 +13,7 @@ AB Tasty maintains this destination. For any issues with the destination, [conta ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for **AB Tasty** in the Destinations Catalog, and select the **AB Tasty** destination. diff --git a/src/connections/destinations/catalog/activecampaign/index.md b/src/connections/destinations/catalog/activecampaign/index.md index 940e5ed0ca..aa0e8f6f0a 100644 --- a/src/connections/destinations/catalog/activecampaign/index.md +++ b/src/connections/destinations/catalog/activecampaign/index.md @@ -9,7 +9,7 @@ This destination is maintained by ActiveCampaign. For any issues with the destin ## Getting Started -{% include content/connection-modes.md %} + 1. From your Segment UI's Destinations page click on "Add Destination". 2. Search for "Active Campaign" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/adikteev/index.md b/src/connections/destinations/catalog/adikteev/index.md index 048a67bcfb..6dd1dc0608 100644 --- a/src/connections/destinations/catalog/adikteev/index.md +++ b/src/connections/destinations/catalog/adikteev/index.md @@ -10,7 +10,7 @@ This destination is maintained by Adikteev. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + Currently, this destination supports events originating from Mobile sources alone. diff --git a/src/connections/destinations/catalog/adjust/index.md b/src/connections/destinations/catalog/adjust/index.md index 5825aebee8..8b390b2906 100644 --- a/src/connections/destinations/catalog/adjust/index.md +++ b/src/connections/destinations/catalog/adjust/index.md @@ -10,7 +10,7 @@ If you notice any gaps, out-dated information, or want to leave feedback to help ## Getting started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Adjust" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/adobe-target/index.md b/src/connections/destinations/catalog/adobe-target/index.md index 6ed5b29fdc..2d60692bdc 100644 --- a/src/connections/destinations/catalog/adobe-target/index.md +++ b/src/connections/destinations/catalog/adobe-target/index.md @@ -17,7 +17,7 @@ Destination and its documentation, [let us know](https://segment.com/help/contac ## Getting Started -{% include content/connection-modes.md %} + 1. Download the `at.js` file from Adobe and include it in the `head` of your website above the Segment snippet. Because Adobe Target is an A/B testing diff --git a/src/connections/destinations/catalog/adquick/index.md b/src/connections/destinations/catalog/adquick/index.md index 38c1c411a3..43d6febc1d 100644 --- a/src/connections/destinations/catalog/adquick/index.md +++ b/src/connections/destinations/catalog/adquick/index.md @@ -10,7 +10,7 @@ This destination is maintained by AdQuick. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "AdQuick" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/adroll/index.md b/src/connections/destinations/catalog/adroll/index.md index 8ce6d427eb..8fd4a660a0 100644 --- a/src/connections/destinations/catalog/adroll/index.md +++ b/src/connections/destinations/catalog/adroll/index.md @@ -7,7 +7,7 @@ id: 54521fd525e721e32a72ee8e ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Adroll" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/adtriba/index.md b/src/connections/destinations/catalog/adtriba/index.md index 8416c2e824..e17778a8a3 100644 --- a/src/connections/destinations/catalog/adtriba/index.md +++ b/src/connections/destinations/catalog/adtriba/index.md @@ -12,7 +12,7 @@ This destination is maintained by Adtriba. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Adtriba" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/airship/index.md b/src/connections/destinations/catalog/airship/index.md index e79324fc49..fbff081783 100644 --- a/src/connections/destinations/catalog/airship/index.md +++ b/src/connections/destinations/catalog/airship/index.md @@ -21,7 +21,7 @@ This destination is maintained by Airship. For any issues [contact the Airship S ## Getting Started -{% include content/connection-modes.md %} + Follow these steps to configure the integration diff --git a/src/connections/destinations/catalog/alexa/index.md b/src/connections/destinations/catalog/alexa/index.md index bc0c7fde4e..446a8aae6b 100644 --- a/src/connections/destinations/catalog/alexa/index.md +++ b/src/connections/destinations/catalog/alexa/index.md @@ -8,7 +8,7 @@ id: 54521fd525e721e32a72ee90 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Alexa" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/amazon-eventbridge/index.md b/src/connections/destinations/catalog/amazon-eventbridge/index.md index 948aa3a21f..ad920babce 100644 --- a/src/connections/destinations/catalog/amazon-eventbridge/index.md +++ b/src/connections/destinations/catalog/amazon-eventbridge/index.md @@ -10,7 +10,7 @@ In addition to already supported destinations like Kinesis, S3, and Redshift, yo ## Getting Started -{% include content/connection-modes.md %} + 1. Provide Segment your AWS Account ID and the region you'd like us to configure the Segment Partner Event Source in. Ensure you've provided the same region in Segment where you'd like to configure your Event Bus. 2. Once you send an event through with the destination enabled, we'll create a Partner Event Source in Amazon EventBridge, which you can activate in the AWS Console. diff --git a/src/connections/destinations/catalog/amazon-kinesis-firehose/index.md b/src/connections/destinations/catalog/amazon-kinesis-firehose/index.md index b4ad81e5e0..3ee40afd92 100644 --- a/src/connections/destinations/catalog/amazon-kinesis-firehose/index.md +++ b/src/connections/destinations/catalog/amazon-kinesis-firehose/index.md @@ -7,7 +7,7 @@ id: 59022a2270a3e552b955caa9 ## Getting Started -{% include content/connection-modes.md %} + To get started: 1. Create at least one Kinesis Firehose delivery stream. You can follow these [instructions](http://docs.aws.amazon.com/firehose/latest/dev/basic-create.html){:target="_blank"} to create a new delivery stream. diff --git a/src/connections/destinations/catalog/amazon-kinesis/index.md b/src/connections/destinations/catalog/amazon-kinesis/index.md index 3a1620d567..efe9cc3181 100644 --- a/src/connections/destinations/catalog/amazon-kinesis/index.md +++ b/src/connections/destinations/catalog/amazon-kinesis/index.md @@ -8,7 +8,7 @@ id: 57da359580412f644ff33fb9 ## Getting Started -{% include content/connection-modes.md %} + To get started: 1. Create a Kinesis stream. Follow these [instructions](http://docs.aws.amazon.com/streams/latest/dev/learning-kinesis-module-one-create-stream.html){:target="_blank"} in order to create a new AWS Kinesis Stream. diff --git a/src/connections/destinations/catalog/amazon-lambda/index.md b/src/connections/destinations/catalog/amazon-lambda/index.md index eca7f20860..45494c1111 100644 --- a/src/connections/destinations/catalog/amazon-lambda/index.md +++ b/src/connections/destinations/catalog/amazon-lambda/index.md @@ -14,7 +14,7 @@ With Lambda, you can run code for any type of application or backend service - a ## Getting started -{% include content/connection-modes.md %} + To get started, you'll need to: 1. [Build a Lambda function to process Segment events](/docs/connections/destinations/catalog/amazon-lambda/#build-a-lambda-function-to-process-segment-events) diff --git a/src/connections/destinations/catalog/amazon-personalize/index.md b/src/connections/destinations/catalog/amazon-personalize/index.md index ee703d9d28..5ce4466fa0 100644 --- a/src/connections/destinations/catalog/amazon-personalize/index.md +++ b/src/connections/destinations/catalog/amazon-personalize/index.md @@ -13,7 +13,7 @@ Developing the machine-learning capabilities necessary to produce these recommen ## Getting Started -{% include content/connection-modes.md %} + These are the pre-requisites you need before getting started: diff --git a/src/connections/destinations/catalog/ambassador/index.md b/src/connections/destinations/catalog/ambassador/index.md index c0228c9d40..1e1fea79c9 100644 --- a/src/connections/destinations/catalog/ambassador/index.md +++ b/src/connections/destinations/catalog/ambassador/index.md @@ -7,7 +7,7 @@ id: 573a3dfb80412f644ff13679 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Ambassador" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/amberflo/index.md b/src/connections/destinations/catalog/amberflo/index.md index 8fdb311310..bd6aa32ce9 100644 --- a/src/connections/destinations/catalog/amberflo/index.md +++ b/src/connections/destinations/catalog/amberflo/index.md @@ -11,7 +11,7 @@ This destination is maintained by Amberflo. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Amberflo" in the Destinations Catalog, and select the "Amberflo" destination. diff --git a/src/connections/destinations/catalog/anodot/index.md b/src/connections/destinations/catalog/anodot/index.md index 3264445555..26f8824207 100644 --- a/src/connections/destinations/catalog/anodot/index.md +++ b/src/connections/destinations/catalog/anodot/index.md @@ -9,7 +9,7 @@ This destination is maintained by Anodot. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Anodot" in the Destinations Catalog, and select the Anodot destination. diff --git a/src/connections/destinations/catalog/appsflyer/index.md b/src/connections/destinations/catalog/appsflyer/index.md index b8c6632ec5..6d91ef1278 100644 --- a/src/connections/destinations/catalog/appsflyer/index.md +++ b/src/connections/destinations/catalog/appsflyer/index.md @@ -14,7 +14,7 @@ Segment's Appsflyer destination code is open source and available on GitHub. You ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "AppsFlyer" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/apptimize/index.md b/src/connections/destinations/catalog/apptimize/index.md index a24f9db1d2..bbd193d1d4 100644 --- a/src/connections/destinations/catalog/apptimize/index.md +++ b/src/connections/destinations/catalog/apptimize/index.md @@ -7,7 +7,7 @@ id: 5537d3e80a20f4e22f0fb385 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Apptimize" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/asayer/index.md b/src/connections/destinations/catalog/asayer/index.md index 76968b55de..b2a8c95854 100644 --- a/src/connections/destinations/catalog/asayer/index.md +++ b/src/connections/destinations/catalog/asayer/index.md @@ -11,7 +11,7 @@ This destination is maintained by Asayer. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Asayer" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/attribution/index.md b/src/connections/destinations/catalog/attribution/index.md index cba9637760..6771200ecc 100644 --- a/src/connections/destinations/catalog/attribution/index.md +++ b/src/connections/destinations/catalog/attribution/index.md @@ -7,7 +7,7 @@ id: 54521fd525e721e32a72ee96 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Attribution" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/auryc/index.md b/src/connections/destinations/catalog/auryc/index.md index a21d6550fd..241c9f219d 100644 --- a/src/connections/destinations/catalog/auryc/index.md +++ b/src/connections/destinations/catalog/auryc/index.md @@ -13,7 +13,7 @@ It also means that, for the time being, there is a longer delay for us to deploy ## Getting Started -{% include content/connection-modes.md %} + 1. Go to your [Auryc Installation Guides](https://portal.auryc.com/auth/session?modal=integrations) and click **Install Segment**. 2. On the Segment page, log in and authorize the Auryc Destination. diff --git a/src/connections/destinations/catalog/autopilotapp/index.md b/src/connections/destinations/catalog/autopilotapp/index.md index 06bdd11866..f3444deb5e 100644 --- a/src/connections/destinations/catalog/autopilotapp/index.md +++ b/src/connections/destinations/catalog/autopilotapp/index.md @@ -13,7 +13,7 @@ This destination is maintained by Ortto. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Ortto" in the Destinations Catalog, and select the "Ortto" destination. diff --git a/src/connections/destinations/catalog/autopilothq/index.md b/src/connections/destinations/catalog/autopilothq/index.md index c040ade4fa..692883287b 100644 --- a/src/connections/destinations/catalog/autopilothq/index.md +++ b/src/connections/destinations/catalog/autopilothq/index.md @@ -11,7 +11,7 @@ Are you instead trying to set up Autopilot as a Source to get data from Autopilo ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Autopilot" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/azure-function/index.md b/src/connections/destinations/catalog/azure-function/index.md index 890a801754..b77b2cdd0e 100644 --- a/src/connections/destinations/catalog/azure-function/index.md +++ b/src/connections/destinations/catalog/azure-function/index.md @@ -14,7 +14,7 @@ Segment makes it easy to send your data to Azure Function (and lots of other des # Getting Started -{% include content/connection-modes.md %} + ## Build an Azure Function to Process Segment Events diff --git a/src/connections/destinations/catalog/beamer/index.md b/src/connections/destinations/catalog/beamer/index.md index 3518075d68..4ff538bc55 100644 --- a/src/connections/destinations/catalog/beamer/index.md +++ b/src/connections/destinations/catalog/beamer/index.md @@ -16,7 +16,7 @@ This destination is maintained by Beamer. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Beamer" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/bento/index.md b/src/connections/destinations/catalog/bento/index.md index e8cdab0a57..22e7f8c955 100644 --- a/src/connections/destinations/catalog/bento/index.md +++ b/src/connections/destinations/catalog/bento/index.md @@ -10,7 +10,7 @@ This destination is maintained by Bento. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Bento" in the Destinations Catalog, and select the "Bento" destination. diff --git a/src/connections/destinations/catalog/bing-ads/index.md b/src/connections/destinations/catalog/bing-ads/index.md index 35df3d19c5..a4202b3cee 100644 --- a/src/connections/destinations/catalog/bing-ads/index.md +++ b/src/connections/destinations/catalog/bing-ads/index.md @@ -7,7 +7,7 @@ id: 54521fd525e721e32a72ee97 ## Getting Started -{% include content/connection-modes.md %} + Before you can track conversions or target audiences, you need to create a UET tag in Bing Ads and then add it to the destination settings. Follow the steps within [the Bing Ads documentation to create a UET tag](https://advertise.bingads.microsoft.com/en-us/resources/training/universal-event-tracking). diff --git a/src/connections/destinations/catalog/blendo/index.md b/src/connections/destinations/catalog/blendo/index.md index 8497db2cca..990876aadb 100644 --- a/src/connections/destinations/catalog/blendo/index.md +++ b/src/connections/destinations/catalog/blendo/index.md @@ -11,7 +11,7 @@ This destination is maintained by Blendo. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Blendo" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/blitzllama/index.md b/src/connections/destinations/catalog/blitzllama/index.md index fa9c7e9e8e..9087c19cf2 100644 --- a/src/connections/destinations/catalog/blitzllama/index.md +++ b/src/connections/destinations/catalog/blitzllama/index.md @@ -10,7 +10,7 @@ This destination is maintained by Blitzllama. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. diff --git a/src/connections/destinations/catalog/branch-metrics/index.md b/src/connections/destinations/catalog/branch-metrics/index.md index f37506b16c..00b6ecec68 100644 --- a/src/connections/destinations/catalog/branch-metrics/index.md +++ b/src/connections/destinations/catalog/branch-metrics/index.md @@ -20,7 +20,7 @@ This destination is maintained by Branch. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Branch Metrics" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/breyta-crm/index.md b/src/connections/destinations/catalog/breyta-crm/index.md index 73221309f0..bf864923e1 100644 --- a/src/connections/destinations/catalog/breyta-crm/index.md +++ b/src/connections/destinations/catalog/breyta-crm/index.md @@ -9,7 +9,7 @@ This destination is maintained by Breyta. For any issues with the destination, [ ## Getting started -{% include content/connection-modes.md %} + 1. Login to your [Breyta account](https://app.breyta.io){:target="_blank"}. 2. Go to the Integrations page and click **Add New**. diff --git a/src/connections/destinations/catalog/bucket/index.md b/src/connections/destinations/catalog/bucket/index.md index b884d55efe..9c02dd15d8 100644 --- a/src/connections/destinations/catalog/bucket/index.md +++ b/src/connections/destinations/catalog/bucket/index.md @@ -10,7 +10,7 @@ This destination is maintained by Bucket. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Bucket" in the Destinations Catalog, and select the Bucket destination. diff --git a/src/connections/destinations/catalog/bugherd/index.md b/src/connections/destinations/catalog/bugherd/index.md index afe470a1b9..431e9adaf7 100644 --- a/src/connections/destinations/catalog/bugherd/index.md +++ b/src/connections/destinations/catalog/bugherd/index.md @@ -7,7 +7,7 @@ id: 54521fd525e721e32a72ee99 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "BugHerd" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/bugsnag/index.md b/src/connections/destinations/catalog/bugsnag/index.md index ee4ca8e3ba..54fc98b617 100644 --- a/src/connections/destinations/catalog/bugsnag/index.md +++ b/src/connections/destinations/catalog/bugsnag/index.md @@ -14,7 +14,7 @@ iOS | [iOS SDK 1.0.3](https://github.com/segment-integrations/analytics-ios-inte ## Getting Started -{% include content/connection-modes.md %} + ### Web diff --git a/src/connections/destinations/catalog/button/index.md b/src/connections/destinations/catalog/button/index.md index a0183ba975..7348827d36 100644 --- a/src/connections/destinations/catalog/button/index.md +++ b/src/connections/destinations/catalog/button/index.md @@ -9,7 +9,7 @@ This destination is maintained by Button. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + > info "" > Contact your Button representative for your Button API Key. diff --git a/src/connections/destinations/catalog/buzzboard/index.md b/src/connections/destinations/catalog/buzzboard/index.md index 7a35fd0ce8..c5a1659d6e 100644 --- a/src/connections/destinations/catalog/buzzboard/index.md +++ b/src/connections/destinations/catalog/buzzboard/index.md @@ -13,7 +13,7 @@ This destination is maintained by BuzzBoard. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "BuzzBoard" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/bytegain/index.md b/src/connections/destinations/catalog/bytegain/index.md index 96146d9d74..9982bbef4b 100644 --- a/src/connections/destinations/catalog/bytegain/index.md +++ b/src/connections/destinations/catalog/bytegain/index.md @@ -11,7 +11,7 @@ This destination is maintained by ByteGain. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "ByteGain" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/byteplus/index.md b/src/connections/destinations/catalog/byteplus/index.md index 03fd28df82..e23eb836f9 100644 --- a/src/connections/destinations/catalog/byteplus/index.md +++ b/src/connections/destinations/catalog/byteplus/index.md @@ -14,7 +14,7 @@ This destination is maintained by BytePlus. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. diff --git a/src/connections/destinations/catalog/calixa/index.md b/src/connections/destinations/catalog/calixa/index.md index 3a7e302c91..d93288b998 100644 --- a/src/connections/destinations/catalog/calixa/index.md +++ b/src/connections/destinations/catalog/calixa/index.md @@ -9,7 +9,7 @@ This destination is maintained by Calixa. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. Login to your [Calixa account](https://console.calixa.io/login). 2. Go to the [Integrations page](https://console.calixa.io/integrations) and click **Add Integration**. diff --git a/src/connections/destinations/catalog/callingly/index.md b/src/connections/destinations/catalog/callingly/index.md index cd9b316682..2918443107 100644 --- a/src/connections/destinations/catalog/callingly/index.md +++ b/src/connections/destinations/catalog/callingly/index.md @@ -12,7 +12,7 @@ This destination is maintained by Callingly. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Callingly" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/candu/index.md b/src/connections/destinations/catalog/candu/index.md index cfa075b138..c0c9da2da9 100644 --- a/src/connections/destinations/catalog/candu/index.md +++ b/src/connections/destinations/catalog/candu/index.md @@ -12,7 +12,7 @@ This destination is maintained by Candu Labs. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Candu" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/canny/index.md b/src/connections/destinations/catalog/canny/index.md index 890c3a62bb..3c1880d9e7 100644 --- a/src/connections/destinations/catalog/canny/index.md +++ b/src/connections/destinations/catalog/canny/index.md @@ -11,7 +11,7 @@ This destination is maintained by Canny. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. Go to your [Canny Admin Segment Settings](https://canny.io/redirect?to=%2Fadmin%2Fsettings%2Fsegment). 2. You will then be routed to Segment where you will be prompted to login and authorize the Canny Destination. Select the workspace and source you would like to integrate and click allow. diff --git a/src/connections/destinations/catalog/churnzero/index.md b/src/connections/destinations/catalog/churnzero/index.md index 7bb0c1e942..7d0349f284 100644 --- a/src/connections/destinations/catalog/churnzero/index.md +++ b/src/connections/destinations/catalog/churnzero/index.md @@ -9,7 +9,7 @@ This destination is maintained by ChurnZero. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "ChurnZero" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/clearbit-enrichment/index.md b/src/connections/destinations/catalog/clearbit-enrichment/index.md index d6f0564d27..bffa851dc5 100644 --- a/src/connections/destinations/catalog/clearbit-enrichment/index.md +++ b/src/connections/destinations/catalog/clearbit-enrichment/index.md @@ -7,7 +7,7 @@ id: 576af9ca80412f644ff13b87 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Clearbit Enrichment" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/clearbit-reveal/index.md b/src/connections/destinations/catalog/clearbit-reveal/index.md index e28ecd6a16..15c52d741d 100644 --- a/src/connections/destinations/catalog/clearbit-reveal/index.md +++ b/src/connections/destinations/catalog/clearbit-reveal/index.md @@ -7,7 +7,7 @@ id: 57e0726680412f644ff36883 ## Getting Started -{% include content/connection-modes.md %} + Setup within Segment: 1. From the Segment web app, click **Catalog**. diff --git a/src/connections/destinations/catalog/clearbrain/index.md b/src/connections/destinations/catalog/clearbrain/index.md index 980196467f..ff416df946 100644 --- a/src/connections/destinations/catalog/clearbrain/index.md +++ b/src/connections/destinations/catalog/clearbrain/index.md @@ -12,7 +12,7 @@ This destination is maintained by ClearBrain. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "ClearBrain" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/clicky/index.md b/src/connections/destinations/catalog/clicky/index.md index 48baf41db7..5b4cea6966 100644 --- a/src/connections/destinations/catalog/clicky/index.md +++ b/src/connections/destinations/catalog/clicky/index.md @@ -10,7 +10,7 @@ Our Clicky destination code is open-source on GitHub. You can check out the code ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. diff --git a/src/connections/destinations/catalog/cliff/index.md b/src/connections/destinations/catalog/cliff/index.md index b554dbab74..cca450b060 100644 --- a/src/connections/destinations/catalog/cliff/index.md +++ b/src/connections/destinations/catalog/cliff/index.md @@ -9,7 +9,7 @@ This destination is maintained by Cliff.ai. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. Go to the [Cliff Integrations library](https://app.cliff.ai/apps/anomaly-detection/integrations/inbound). 2. Find "Segment" in the list of available integrations and click **Start**. diff --git a/src/connections/destinations/catalog/convertflow/index.md b/src/connections/destinations/catalog/convertflow/index.md index 0754a59570..448b29feea 100644 --- a/src/connections/destinations/catalog/convertflow/index.md +++ b/src/connections/destinations/catalog/convertflow/index.md @@ -12,7 +12,7 @@ This destination is maintained by ConvertFlow. For any issues with the destinati ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "ConvertFlow" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/courier/index.md b/src/connections/destinations/catalog/courier/index.md index f4859b15ef..bb48aaf744 100644 --- a/src/connections/destinations/catalog/courier/index.md +++ b/src/connections/destinations/catalog/courier/index.md @@ -11,7 +11,7 @@ This destination is maintained by Courier. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for “Courier” in the Destinations Catalog, and select the “Courier” destination. diff --git a/src/connections/destinations/catalog/crazy-egg/index.md b/src/connections/destinations/catalog/crazy-egg/index.md index dccdddd3ec..d7cb92e397 100644 --- a/src/connections/destinations/catalog/crazy-egg/index.md +++ b/src/connections/destinations/catalog/crazy-egg/index.md @@ -7,7 +7,7 @@ id: 54521fd525e721e32a72eea7 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Crazy Egg" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/crisp/index.md b/src/connections/destinations/catalog/crisp/index.md index 8fdad84c34..5e6de8a666 100644 --- a/src/connections/destinations/catalog/crisp/index.md +++ b/src/connections/destinations/catalog/crisp/index.md @@ -9,7 +9,7 @@ This destination is maintained by Crisp. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. Go to the [Crisp Plugins page](http://app.crisp.chat). 2. Search for the "Segment" plugin, click **Connect to Segment**. diff --git a/src/connections/destinations/catalog/criteo-offline-conversions/index.md b/src/connections/destinations/catalog/criteo-offline-conversions/index.md index 33d562185b..ba56c8e216 100644 --- a/src/connections/destinations/catalog/criteo-offline-conversions/index.md +++ b/src/connections/destinations/catalog/criteo-offline-conversions/index.md @@ -11,7 +11,7 @@ The Criteo Offline Conversions Destination and this document are maintained by C ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Criteo Offline Conversions" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/crowdpower/index.md b/src/connections/destinations/catalog/crowdpower/index.md index 49c8e80e11..0f4aff92f9 100644 --- a/src/connections/destinations/catalog/crowdpower/index.md +++ b/src/connections/destinations/catalog/crowdpower/index.md @@ -13,7 +13,7 @@ This destination is maintained by CrowdPower. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "CrowdPower" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/cruncher/index.md b/src/connections/destinations/catalog/cruncher/index.md index eb23ef61cb..2d4e791283 100644 --- a/src/connections/destinations/catalog/cruncher/index.md +++ b/src/connections/destinations/catalog/cruncher/index.md @@ -12,7 +12,7 @@ This destination is maintained by Cruncher. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Cruncher" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/custify/index.md b/src/connections/destinations/catalog/custify/index.md index 4bbb333a1b..2ae1bd755b 100644 --- a/src/connections/destinations/catalog/custify/index.md +++ b/src/connections/destinations/catalog/custify/index.md @@ -11,7 +11,7 @@ This destination is maintained by Custify. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Custify" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/customer-io/index.md b/src/connections/destinations/catalog/customer-io/index.md index dc1516eb71..edf246a72e 100644 --- a/src/connections/destinations/catalog/customer-io/index.md +++ b/src/connections/destinations/catalog/customer-io/index.md @@ -15,7 +15,7 @@ actions-slug: "customer-io-actions" ## Getting Started -{% include content/connection-modes.md %} + You can follow the setup guide through Segment using the steps below, or you can automatically sync your Customer.io connection settings to your Segment source using the flow in your Customer.io workspace's Integrations page. diff --git a/src/connections/destinations/catalog/customersuccessbox/index.md b/src/connections/destinations/catalog/customersuccessbox/index.md index ec28ef5f7b..8a5a01b121 100644 --- a/src/connections/destinations/catalog/customersuccessbox/index.md +++ b/src/connections/destinations/catalog/customersuccessbox/index.md @@ -12,7 +12,7 @@ This destination is maintained by CustomerSuccessBox. For any issues with the de ## Getting Started -{% include content/connection-modes.md %} + ### Adding Destination diff --git a/src/connections/destinations/catalog/customfit-ai/index.md b/src/connections/destinations/catalog/customfit-ai/index.md index 89cba99444..ad57111277 100644 --- a/src/connections/destinations/catalog/customfit-ai/index.md +++ b/src/connections/destinations/catalog/customfit-ai/index.md @@ -13,7 +13,7 @@ This destination is maintained by CustomFit.ai. For any issues with the destinat ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "CustomFit.ai" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/cxense/index.md b/src/connections/destinations/catalog/cxense/index.md index 99a7317700..8828cc5c73 100644 --- a/src/connections/destinations/catalog/cxense/index.md +++ b/src/connections/destinations/catalog/cxense/index.md @@ -5,7 +5,7 @@ hidden: true ## Getting Started -{% include content/connection-modes.md %} + Currently this destination supports events originating from Web sources (not Server or Mobile). You can read more about how define a source [here](/docs/connections/sources/#what-is-a-source). diff --git a/src/connections/destinations/catalog/datarangers/index.md b/src/connections/destinations/catalog/datarangers/index.md index bb965383a7..009d3a6ef3 100644 --- a/src/connections/destinations/catalog/datarangers/index.md +++ b/src/connections/destinations/catalog/datarangers/index.md @@ -12,7 +12,7 @@ This destination is maintained by BytePlus. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. diff --git a/src/connections/destinations/catalog/delighted/index.md b/src/connections/destinations/catalog/delighted/index.md index 98d0c1685a..fac50d45ca 100644 --- a/src/connections/destinations/catalog/delighted/index.md +++ b/src/connections/destinations/catalog/delighted/index.md @@ -12,7 +12,7 @@ _**NOTE:** The Delighted Destination is currently only compatible with email sur ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Delighted" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/digioh/index.md b/src/connections/destinations/catalog/digioh/index.md index 437f0b7d99..99e4a2a4a3 100644 --- a/src/connections/destinations/catalog/digioh/index.md +++ b/src/connections/destinations/catalog/digioh/index.md @@ -9,7 +9,7 @@ This destination is maintained by Digioh. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. Open the [Digioh Integrations tab](https://account.digioh.com/Integration/List), click **New Integration**. 2. The Segment App opens in a new window. Log in to authenticate the connection from Digioh. diff --git a/src/connections/destinations/catalog/dreamdata-io/index.md b/src/connections/destinations/catalog/dreamdata-io/index.md index 41e14488a6..0911644945 100644 --- a/src/connections/destinations/catalog/dreamdata-io/index.md +++ b/src/connections/destinations/catalog/dreamdata-io/index.md @@ -11,7 +11,7 @@ This destination is maintained by Dreamdata. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Dreamdata" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/drift/index.md b/src/connections/destinations/catalog/drift/index.md index bb9f4c0303..0fda794278 100644 --- a/src/connections/destinations/catalog/drift/index.md +++ b/src/connections/destinations/catalog/drift/index.md @@ -15,7 +15,7 @@ The cloud-mode destination is maintained by Drift. For any issues with the desti ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Drift" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/elevio/index.md b/src/connections/destinations/catalog/elevio/index.md index 48d38106f8..2fab04617f 100644 --- a/src/connections/destinations/catalog/elevio/index.md +++ b/src/connections/destinations/catalog/elevio/index.md @@ -8,7 +8,7 @@ id: 556df6680a20f4e22f0fb3a0 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Elevio" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/emarsys/index.md b/src/connections/destinations/catalog/emarsys/index.md index 1a6f760449..409e89d483 100644 --- a/src/connections/destinations/catalog/emarsys/index.md +++ b/src/connections/destinations/catalog/emarsys/index.md @@ -11,7 +11,7 @@ This destination is maintained by Emarsys. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Emarsys" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/emma/index.md b/src/connections/destinations/catalog/emma/index.md index db463fa583..967aa46f00 100644 --- a/src/connections/destinations/catalog/emma/index.md +++ b/src/connections/destinations/catalog/emma/index.md @@ -11,7 +11,7 @@ This destination is maintained by EMMA. For any issues with the destination, [co ## Getting Started -{% include content/connection-modes.md %} + 1. From your Segment UI's Destinations page, click "Add Destination". 2. Search for "EMMA" in the Destinations Catalog, and confirm the Source you'd like to connect to. diff --git a/src/connections/destinations/catalog/enjoyhq/index.md b/src/connections/destinations/catalog/enjoyhq/index.md index 4430eba796..78d641a882 100644 --- a/src/connections/destinations/catalog/enjoyhq/index.md +++ b/src/connections/destinations/catalog/enjoyhq/index.md @@ -14,7 +14,7 @@ This destination is maintained by EnjoyHQ. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "EnjoyHQ" in the Destinations Catalog, and select the EnjoyHQ destination. diff --git a/src/connections/destinations/catalog/epica/index.md b/src/connections/destinations/catalog/epica/index.md index bb562aaaec..e546dbccb5 100644 --- a/src/connections/destinations/catalog/epica/index.md +++ b/src/connections/destinations/catalog/epica/index.md @@ -12,7 +12,7 @@ This destination is maintained by EPICA. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "EPICA" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/everflow/index.md b/src/connections/destinations/catalog/everflow/index.md index d746262046..7ee342d4a7 100644 --- a/src/connections/destinations/catalog/everflow/index.md +++ b/src/connections/destinations/catalog/everflow/index.md @@ -9,7 +9,7 @@ This destination is maintained by Everflow. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Everflow" in the Destinations Catalog, and select the Everflow destination. diff --git a/src/connections/destinations/catalog/experiments-by-growthhackers/index.md b/src/connections/destinations/catalog/experiments-by-growthhackers/index.md index 77f11c9c8d..24275ea35f 100644 --- a/src/connections/destinations/catalog/experiments-by-growthhackers/index.md +++ b/src/connections/destinations/catalog/experiments-by-growthhackers/index.md @@ -12,7 +12,7 @@ This destination is maintained by Experiments by Growthhackers. For any issues w ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Experiments by Growthhackers" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/exponea/index.md b/src/connections/destinations/catalog/exponea/index.md index bb6a271217..241b36df7d 100644 --- a/src/connections/destinations/catalog/exponea/index.md +++ b/src/connections/destinations/catalog/exponea/index.md @@ -15,7 +15,7 @@ This destination is maintained by Exponea. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Exponea" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/extole-platform/index.md b/src/connections/destinations/catalog/extole-platform/index.md index 18dd0f6ef1..2a9aa7c93c 100644 --- a/src/connections/destinations/catalog/extole-platform/index.md +++ b/src/connections/destinations/catalog/extole-platform/index.md @@ -14,7 +14,7 @@ This destination is maintained by Extole. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. Go to your [Extole Tech Center](https://my.extole.com/tech-center#access-token) page and generate an API Key. Copy that key. If you encounter any problems, check this [Extole Help Page on access tokens](https://success.extole.com/hc/en-us/articles/360001616668-Generating-Long-Lived-Access-Tokens). 2. From the Segment Destinations page, click **Add Destination**. diff --git a/src/connections/destinations/catalog/facebook-app-events/index.md b/src/connections/destinations/catalog/facebook-app-events/index.md index 18526d0311..7c310e6544 100644 --- a/src/connections/destinations/catalog/facebook-app-events/index.md +++ b/src/connections/destinations/catalog/facebook-app-events/index.md @@ -21,7 +21,7 @@ This page is about the **Facebook App Events**. For documentation on other Faceb ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Facebook App Events" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/facebook-offline-conversions/index.md b/src/connections/destinations/catalog/facebook-offline-conversions/index.md index 50acdce91a..d4d0bd140c 100644 --- a/src/connections/destinations/catalog/facebook-offline-conversions/index.md +++ b/src/connections/destinations/catalog/facebook-offline-conversions/index.md @@ -23,7 +23,7 @@ This page is about the **Facebook Offline Conversions**. For documentation on ot ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 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 6b00262989..65b571ef8e 100644 --- a/src/connections/destinations/catalog/facebook-pixel-server-side/index.md +++ b/src/connections/destinations/catalog/facebook-pixel-server-side/index.md @@ -34,7 +34,7 @@ This page is about the **Facebook Conversions API** destination. For documentati ## Getting started -{% include content/connection-modes.md %} + Next, set up your Pixel to work with the Facebook Conversions API destination. You can use an existing Facebook Pixel that you already have set up, or create a new one. If you don't already have a Facebook Pixel configured, follow the "New Pixel" instructions below to create one. diff --git a/src/connections/destinations/catalog/facebook-pixel/index.md b/src/connections/destinations/catalog/facebook-pixel/index.md index 2ce0f642ce..33dfb36691 100644 --- a/src/connections/destinations/catalog/facebook-pixel/index.md +++ b/src/connections/destinations/catalog/facebook-pixel/index.md @@ -30,7 +30,7 @@ This page is about the **Facebook Pixel**. For documentation on other Facebook d ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Facebook Pixel" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/flagshipio/index.md b/src/connections/destinations/catalog/flagshipio/index.md index 2bd24aa859..84ad040102 100644 --- a/src/connections/destinations/catalog/flagshipio/index.md +++ b/src/connections/destinations/catalog/flagshipio/index.md @@ -12,7 +12,7 @@ Flagship.io maintains this destination. For any issues with the destination, [co ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for **Flagship.io** in the Destinations Catalog, and select the **Flagship.io** destination. diff --git a/src/connections/destinations/catalog/flurry/index.md b/src/connections/destinations/catalog/flurry/index.md index 32a1ee1e56..f9343302ef 100644 --- a/src/connections/destinations/catalog/flurry/index.md +++ b/src/connections/destinations/catalog/flurry/index.md @@ -9,7 +9,7 @@ Our Flurry destination code is open sourced on GitHub. Feel free to check it out ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Flurry" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/foxmetrics/index.md b/src/connections/destinations/catalog/foxmetrics/index.md index b7e21b87bd..71ba45bfc2 100644 --- a/src/connections/destinations/catalog/foxmetrics/index.md +++ b/src/connections/destinations/catalog/foxmetrics/index.md @@ -7,7 +7,7 @@ id: 54521fd625e721e32a72eeb2 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "FoxMetrics" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/freshmarketer/index.md b/src/connections/destinations/catalog/freshmarketer/index.md index 0c56536719..bbf78f1b05 100644 --- a/src/connections/destinations/catalog/freshmarketer/index.md +++ b/src/connections/destinations/catalog/freshmarketer/index.md @@ -12,7 +12,7 @@ This destination is maintained by Freshmarketer. For any issues with the destina ## Getting Started -{% include content/connection-modes.md %} + 1. From your Segment UI's Destinations page click **Add Destination**. 2. Search for "Freshmarketer" in the Destinations Catalog and confirm the Source you'd like to connect to. diff --git a/src/connections/destinations/catalog/fullstory/index.md b/src/connections/destinations/catalog/fullstory/index.md index 633eaeb366..9a30f6adfe 100644 --- a/src/connections/destinations/catalog/fullstory/index.md +++ b/src/connections/destinations/catalog/fullstory/index.md @@ -13,7 +13,7 @@ versions: ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "FullStory" in the Catalog, select it, and choose which of your sources to connect the destination to. Note the source must be sending events using our JavaScript library Analytics.js. diff --git a/src/connections/destinations/catalog/funnelenvy/index.md b/src/connections/destinations/catalog/funnelenvy/index.md index 08a418b03c..0f3df239ea 100644 --- a/src/connections/destinations/catalog/funnelenvy/index.md +++ b/src/connections/destinations/catalog/funnelenvy/index.md @@ -18,7 +18,7 @@ The FunnelEnvy snippet can be found in your settings within FunnelEnvy which is ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "FunnelEnvy" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/funnelfox/index.md b/src/connections/destinations/catalog/funnelfox/index.md index cc7210d627..3535fbf2d5 100644 --- a/src/connections/destinations/catalog/funnelfox/index.md +++ b/src/connections/destinations/catalog/funnelfox/index.md @@ -12,7 +12,7 @@ This destination is maintained by FunnelFox. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "FunnelFox" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/gainsight-px/index.md b/src/connections/destinations/catalog/gainsight-px/index.md index 4aa95d3aa7..10fac78cb1 100644 --- a/src/connections/destinations/catalog/gainsight-px/index.md +++ b/src/connections/destinations/catalog/gainsight-px/index.md @@ -10,7 +10,7 @@ Our Gainsight PX destination code is open sourced on GitHub, feel free to check ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Gainsight PX" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/gainsight/index.md b/src/connections/destinations/catalog/gainsight/index.md index 092a2d5955..e6d1a13bf0 100644 --- a/src/connections/destinations/catalog/gainsight/index.md +++ b/src/connections/destinations/catalog/gainsight/index.md @@ -8,7 +8,7 @@ id: 54521fd625e721e32a72eeb5 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for Gainsight in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/gameball/index.md b/src/connections/destinations/catalog/gameball/index.md index 1e08e0eabf..073146f473 100644 --- a/src/connections/destinations/catalog/gameball/index.md +++ b/src/connections/destinations/catalog/gameball/index.md @@ -10,7 +10,7 @@ This destination is maintained by Gameball. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment app Destinations page click "Gameball". 2. Search for "Gameball" in the Destinations Catalog and confirm the Source you'd like to connect to. diff --git a/src/connections/destinations/catalog/gist/index.md b/src/connections/destinations/catalog/gist/index.md index 44b3acfc67..3117e8f8df 100644 --- a/src/connections/destinations/catalog/gist/index.md +++ b/src/connections/destinations/catalog/gist/index.md @@ -8,7 +8,7 @@ id: 5ec499003e60e9200f681768 This destination is maintained by Gist. For any issues with the destination, [contact the Gist Support team](mailto:support@getgist.com). ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment App's Destinations catalog page, click **Add Destination**. 2. Search for "Gist" in the Destinations Catalog, and select the Gist destination. diff --git a/src/connections/destinations/catalog/google-cloud-function/index.md b/src/connections/destinations/catalog/google-cloud-function/index.md index 685392e5ac..fb71f0a0c2 100644 --- a/src/connections/destinations/catalog/google-cloud-function/index.md +++ b/src/connections/destinations/catalog/google-cloud-function/index.md @@ -13,7 +13,7 @@ Segment makes it easy to send your data to Google Cloud Function (and lots of ot # Getting Started -{% include content/connection-modes.md %} + ## Build a Google Cloud Function to Process Segment Events diff --git a/src/connections/destinations/catalog/groundswell/index.md b/src/connections/destinations/catalog/groundswell/index.md index 6e47b87c92..c5703dbeeb 100644 --- a/src/connections/destinations/catalog/groundswell/index.md +++ b/src/connections/destinations/catalog/groundswell/index.md @@ -11,7 +11,7 @@ This destination is maintained by Groundswell. For any issues with the destinati ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Groundswell" in the Destinations Catalog, and select the Groundswell destination. diff --git a/src/connections/destinations/catalog/hawkei/index.md b/src/connections/destinations/catalog/hawkei/index.md index 5edb286bac..5af85d3229 100644 --- a/src/connections/destinations/catalog/hawkei/index.md +++ b/src/connections/destinations/catalog/hawkei/index.md @@ -13,7 +13,7 @@ This destination is maintained by Hawkei. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Hawkei" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/headsup-ai/index.md b/src/connections/destinations/catalog/headsup-ai/index.md index 19a9340e80..b6241eb870 100644 --- a/src/connections/destinations/catalog/headsup-ai/index.md +++ b/src/connections/destinations/catalog/headsup-ai/index.md @@ -9,7 +9,7 @@ This destination is maintained by HeadsUp. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "HeadsUp AI" in the Destinations Catalog, and select the HeadsUp AI Destination. diff --git a/src/connections/destinations/catalog/heap/index.md b/src/connections/destinations/catalog/heap/index.md index 72a988dfd1..06528d36ae 100644 --- a/src/connections/destinations/catalog/heap/index.md +++ b/src/connections/destinations/catalog/heap/index.md @@ -7,7 +7,7 @@ id: 54521fd725e721e32a72eebd ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Heap" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/hotjar/index.md b/src/connections/destinations/catalog/hotjar/index.md index 60cdb40c5c..a2698cbc26 100644 --- a/src/connections/destinations/catalog/hotjar/index.md +++ b/src/connections/destinations/catalog/hotjar/index.md @@ -14,7 +14,7 @@ Knowing who your users are and what they're doing unlocks more advanced filterin ## Getting Started -{% include content/connection-modes.md %} + 1. Navigate to **Connections** and click **Add Destination** From the Segment web app. diff --git a/src/connections/destinations/catalog/houseware/index.md b/src/connections/destinations/catalog/houseware/index.md index 05b2f569dd..d3cd009340 100644 --- a/src/connections/destinations/catalog/houseware/index.md +++ b/src/connections/destinations/catalog/houseware/index.md @@ -10,7 +10,7 @@ This destination is maintained by Houseware. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Houseware" in the Destinations Catalog, and select the **Houseware** destination. diff --git a/src/connections/destinations/catalog/hubspot/index.md b/src/connections/destinations/catalog/hubspot/index.md index 78fe377950..ca53801b2a 100644 --- a/src/connections/destinations/catalog/hubspot/index.md +++ b/src/connections/destinations/catalog/hubspot/index.md @@ -18,7 +18,7 @@ maintenance-content: New versions of the destination are available. See [HubSpot ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "HubSpot" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/hydra/index.md b/src/connections/destinations/catalog/hydra/index.md index dbad5a096c..1827f92c55 100644 --- a/src/connections/destinations/catalog/hydra/index.md +++ b/src/connections/destinations/catalog/hydra/index.md @@ -11,7 +11,7 @@ This destination is maintained by Hydra. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. diff --git a/src/connections/destinations/catalog/ibm-ubx/index.md b/src/connections/destinations/catalog/ibm-ubx/index.md index c01069e575..c89d5f1658 100644 --- a/src/connections/destinations/catalog/ibm-ubx/index.md +++ b/src/connections/destinations/catalog/ibm-ubx/index.md @@ -28,7 +28,7 @@ endpoint in UBX will not be able to receive Segment data until you have enabled both the destination in the Segment UI *and* requested activation of the endpoint from Segment's support team._ -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "IBM UBX" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/impact-partnership-cloud/index.md b/src/connections/destinations/catalog/impact-partnership-cloud/index.md index f7b70f5a00..3296645fcd 100644 --- a/src/connections/destinations/catalog/impact-partnership-cloud/index.md +++ b/src/connections/destinations/catalog/impact-partnership-cloud/index.md @@ -9,7 +9,7 @@ This destination is maintained by Impact. For any issues with the destination, c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Impact Partnership Cloud" in the Destinations Catalog, and select the Impact Partnership Cloud destination. diff --git a/src/connections/destinations/catalog/impact/index.md b/src/connections/destinations/catalog/impact/index.md index 0a13b449ec..a02613f7e0 100644 --- a/src/connections/destinations/catalog/impact/index.md +++ b/src/connections/destinations/catalog/impact/index.md @@ -6,7 +6,7 @@ redirect_from: /connections/destinations/catalog/impact-radius/ ## Getting Started -{% include content/connection-modes.md %} + To get started, you will need to ensure your account has access to the Impact API and obtain the following keys/tokens from your Impact account: diff --git a/src/connections/destinations/catalog/indicative/index.md b/src/connections/destinations/catalog/indicative/index.md index 3edd937202..3a789fb7df 100644 --- a/src/connections/destinations/catalog/indicative/index.md +++ b/src/connections/destinations/catalog/indicative/index.md @@ -7,7 +7,7 @@ id: 54521fd725e721e32a72eec4 ## Getting Started -{% include content/connection-modes.md %} + 1. [Create an Indicative account](https://app.indicative.com/?utm_source=segment&utm_medium=partners&utm_campaign=setupguide#/login/register). diff --git a/src/connections/destinations/catalog/inflection/index.md b/src/connections/destinations/catalog/inflection/index.md index 672ef308ca..a0c58895a1 100644 --- a/src/connections/destinations/catalog/inflection/index.md +++ b/src/connections/destinations/catalog/inflection/index.md @@ -8,7 +8,7 @@ id: 62260e5dbc37b83046a847be This destination is maintained by Inflection. For any issues with the destination, [contact the Inflection Support team](mailto:support@inflection.io). ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, select **Inflection**. 2. Choose the Source from which events have to be sent to Inflection destination. diff --git a/src/connections/destinations/catalog/inspectlet/index.md b/src/connections/destinations/catalog/inspectlet/index.md index fe9b2b7955..f13d596590 100644 --- a/src/connections/destinations/catalog/inspectlet/index.md +++ b/src/connections/destinations/catalog/inspectlet/index.md @@ -7,7 +7,7 @@ id: 54521fd725e721e32a72eec3 ## Getting Started - {% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Inspectlet" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/jimo/index.md b/src/connections/destinations/catalog/jimo/index.md index dca232feed..82e82c975d 100644 --- a/src/connections/destinations/catalog/jimo/index.md +++ b/src/connections/destinations/catalog/jimo/index.md @@ -9,7 +9,7 @@ Jimo maintains this destination. For any issues with the destination, [contact t ## Getting started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for *Jimo* in the Destinations Catalog, and select the **Jimo** destination. diff --git a/src/connections/destinations/catalog/jivox/index.md b/src/connections/destinations/catalog/jivox/index.md index ea23853a0b..119a223268 100644 --- a/src/connections/destinations/catalog/jivox/index.md +++ b/src/connections/destinations/catalog/jivox/index.md @@ -8,7 +8,7 @@ This destination is maintained by Jivox. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. Contact [Jivox IQ Support Team](mailto:support@jivox.com?subject=Need%20API%20key%20for%20Segment%20Destination%20configuration%20for%20) to get the API Key. 2. From the Destinations catalog page in the Segment App, click **Add Destination**. diff --git a/src/connections/destinations/catalog/journy-io/index.md b/src/connections/destinations/catalog/journy-io/index.md index 457eee3aca..1ba1bf9fa8 100644 --- a/src/connections/destinations/catalog/journy-io/index.md +++ b/src/connections/destinations/catalog/journy-io/index.md @@ -9,7 +9,7 @@ This destination is maintained by journy.io. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "journy.io" in the Destinations Catalog, and select the "journy.io" destination. diff --git a/src/connections/destinations/catalog/june-actions/index.md b/src/connections/destinations/catalog/june-actions/index.md index 96d83803fd..0ab568c4e5 100644 --- a/src/connections/destinations/catalog/june-actions/index.md +++ b/src/connections/destinations/catalog/june-actions/index.md @@ -18,7 +18,7 @@ June maintains this destination. For any issues with the destination, [contact t ## Getting started -{% include content/connection-modes.md %} + 1. Go to the [June settings page](https://app.june.so/redirect-to-my-workspace/settings){:target="_blank"} and click **Add your first source**. To add more instances of the June Destination, click on the Segment integration card and click on **Create new key** and copy the key. 2. From the Segment web app, navigate to **Connections > Catalog**, and select the **Destinations** tab in the catalog. diff --git a/src/connections/destinations/catalog/june/index.md b/src/connections/destinations/catalog/june/index.md index 009128b497..8d7e994b53 100644 --- a/src/connections/destinations/catalog/june/index.md +++ b/src/connections/destinations/catalog/june/index.md @@ -10,7 +10,7 @@ This destination is maintained by June. For any issues with the destination, [co ## Getting Started -{% include content/connection-modes.md %} + 1. Go to the [June settings page](https://app.june.so/redirect-to-my-workspace/settings), click **Add your first source**. To add more instances of the June Destination, click on the Segment integration card and **Add more sources**. 2. The Segment App opens in a new window. Log in to authenticate the connection from June. diff --git a/src/connections/destinations/catalog/kable/index.md b/src/connections/destinations/catalog/kable/index.md index d1cbf5ad4e..b40fcffa53 100644 --- a/src/connections/destinations/catalog/kable/index.md +++ b/src/connections/destinations/catalog/kable/index.md @@ -12,7 +12,7 @@ This Segment destination is maintained by Kable. For any questions or issues, pl ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog** then **Destinations**. 2. Search for **Kable** in the Destinations Catalog, and select **Kable**. diff --git a/src/connections/destinations/catalog/kameleoon/index.md b/src/connections/destinations/catalog/kameleoon/index.md index 2a6b249207..353f747d72 100644 --- a/src/connections/destinations/catalog/kameleoon/index.md +++ b/src/connections/destinations/catalog/kameleoon/index.md @@ -10,7 +10,7 @@ This destination is maintained by Kameleoon. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + Segment's Kameleoon destination supports the following Kameleoon products: * [Kameleoon Experiment](https://www.kameleoon.com/en/platform/ab-testing-client-side){:target="_blank"} (Web Client-side) diff --git a/src/connections/destinations/catalog/kana/index.md b/src/connections/destinations/catalog/kana/index.md index fa328221ad..379d4041ea 100644 --- a/src/connections/destinations/catalog/kana/index.md +++ b/src/connections/destinations/catalog/kana/index.md @@ -10,7 +10,7 @@ This destination is maintained by Kana. For any issues with the destination, [co ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Kana" in the Destinations Catalog, and select the "Kana" destination. diff --git a/src/connections/destinations/catalog/kevel/index.md b/src/connections/destinations/catalog/kevel/index.md index 88fb6c2c14..76e30c50b3 100644 --- a/src/connections/destinations/catalog/kevel/index.md +++ b/src/connections/destinations/catalog/kevel/index.md @@ -10,7 +10,7 @@ This destination is maintained by Kevel. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Kevel" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/kissmetrics/index.md b/src/connections/destinations/catalog/kissmetrics/index.md index 3328b75ab7..d26d0699fe 100644 --- a/src/connections/destinations/catalog/kissmetrics/index.md +++ b/src/connections/destinations/catalog/kissmetrics/index.md @@ -7,7 +7,7 @@ id: 54521fd725e721e32a72eec7 ## Getting Started -{% include content/connection-modes.md %} + To enable Kissmetrics in Segment: diff --git a/src/connections/destinations/catalog/kitemetrics/index.md b/src/connections/destinations/catalog/kitemetrics/index.md index ba92913229..7aad72ee6f 100644 --- a/src/connections/destinations/catalog/kitemetrics/index.md +++ b/src/connections/destinations/catalog/kitemetrics/index.md @@ -12,7 +12,7 @@ This destination is maintained by Kitemetrics. For any issues with the destinati ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. diff --git a/src/connections/destinations/catalog/klaviyo/index.md b/src/connections/destinations/catalog/klaviyo/index.md index 61d3bdb221..1bef171e01 100644 --- a/src/connections/destinations/catalog/klaviyo/index.md +++ b/src/connections/destinations/catalog/klaviyo/index.md @@ -15,7 +15,7 @@ To configure Klaviyo as an Event Source to get data into your warehouse or other ## Getting started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Klaviyo" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/kochava/index.md b/src/connections/destinations/catalog/kochava/index.md index 87f0f4c72b..d7fbf2023f 100644 --- a/src/connections/destinations/catalog/kochava/index.md +++ b/src/connections/destinations/catalog/kochava/index.md @@ -11,7 +11,7 @@ This destination is maintained by Kochava. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. If you have not already, create your app within the Kochava dashboard. Check out Kochava's documentation for information on [creating your app](http://support.kochava.com/create-manage-apps/create-edit-apps). 2. From your Segment UI's Destinations page click on "Add Destination". diff --git a/src/connections/destinations/catalog/kubit/index.md b/src/connections/destinations/catalog/kubit/index.md index 4e8d0a2c18..7f4e0dae7d 100644 --- a/src/connections/destinations/catalog/kubit/index.md +++ b/src/connections/destinations/catalog/kubit/index.md @@ -9,7 +9,7 @@ This destination is maintained by Kubit. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. On Kubit's [Welcome Page](https://segment.kubit.ai/segment), click on “**Connect to Segment**”. ![A screenshot of the Kubit Segment Configuration page.](images/oauth.png) diff --git a/src/connections/destinations/catalog/kubric/index.md b/src/connections/destinations/catalog/kubric/index.md index 833f4de598..304ac61124 100644 --- a/src/connections/destinations/catalog/kubric/index.md +++ b/src/connections/destinations/catalog/kubric/index.md @@ -11,7 +11,7 @@ This destination is maintained by Kubric. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Kubric" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/kustomer/index.md b/src/connections/destinations/catalog/kustomer/index.md index 750795ee11..26df0f67f7 100644 --- a/src/connections/destinations/catalog/kustomer/index.md +++ b/src/connections/destinations/catalog/kustomer/index.md @@ -9,7 +9,7 @@ This destination is maintained by Kustomer. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Kustomer" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/lantern/index.md b/src/connections/destinations/catalog/lantern/index.md index 17ee9b277b..8d8be08268 100644 --- a/src/connections/destinations/catalog/lantern/index.md +++ b/src/connections/destinations/catalog/lantern/index.md @@ -12,7 +12,7 @@ This destination is maintained by Lantern. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + ### Automated Setup 1. Log into your [Lantern dashboard](https://app.lantern.so). diff --git a/src/connections/destinations/catalog/launchdarkly-events/index.md b/src/connections/destinations/catalog/launchdarkly-events/index.md index ebb844d5f3..94892e131f 100644 --- a/src/connections/destinations/catalog/launchdarkly-events/index.md +++ b/src/connections/destinations/catalog/launchdarkly-events/index.md @@ -14,7 +14,7 @@ This destination is maintained by LaunchDarkly. For any issues with the destinat ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for “LaunchDarkly” in the Destinations Catalog, and select the LaunchDarkly destination. diff --git a/src/connections/destinations/catalog/leanplum/index.md b/src/connections/destinations/catalog/leanplum/index.md index 69a9675cf3..8079997d26 100644 --- a/src/connections/destinations/catalog/leanplum/index.md +++ b/src/connections/destinations/catalog/leanplum/index.md @@ -11,7 +11,7 @@ id: 54521fd925e721e32a72eece ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Leanplum" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/learndot/index.md b/src/connections/destinations/catalog/learndot/index.md index bccbe827fa..3839abfbde 100644 --- a/src/connections/destinations/catalog/learndot/index.md +++ b/src/connections/destinations/catalog/learndot/index.md @@ -12,7 +12,7 @@ This destination is maintained by Learndot. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Learndot" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/liveintent-audiences/index.md b/src/connections/destinations/catalog/liveintent-audiences/index.md index 2a8f46b8b1..1f56c0768c 100644 --- a/src/connections/destinations/catalog/liveintent-audiences/index.md +++ b/src/connections/destinations/catalog/liveintent-audiences/index.md @@ -14,7 +14,7 @@ LiveIntent maintains this destination. For more information about this destinati ## Getting Started -{% include content/connection-modes.md %} + Before getting started, you need to request an API Key and AppId by sending an email to LiveIntent support at `support@liveintent.com`. diff --git a/src/connections/destinations/catalog/lou/index.md b/src/connections/destinations/catalog/lou/index.md index 635ae88bf0..2b6eaafe1f 100644 --- a/src/connections/destinations/catalog/lou/index.md +++ b/src/connections/destinations/catalog/lou/index.md @@ -9,7 +9,7 @@ This destination is maintained by Lou. For any issues with the destination, [con ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Lou" in the Destinations Catalog, and select the Lou destination. diff --git a/src/connections/destinations/catalog/mabl/index.md b/src/connections/destinations/catalog/mabl/index.md index a41e748672..f345c0e316 100644 --- a/src/connections/destinations/catalog/mabl/index.md +++ b/src/connections/destinations/catalog/mabl/index.md @@ -12,7 +12,7 @@ This destination is maintained by mabl. For any issues with the destination, [co ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. diff --git a/src/connections/destinations/catalog/mailchimp/index.md b/src/connections/destinations/catalog/mailchimp/index.md index c831fea8c6..033a1fbc16 100644 --- a/src/connections/destinations/catalog/mailchimp/index.md +++ b/src/connections/destinations/catalog/mailchimp/index.md @@ -9,7 +9,7 @@ id: 54521fd925e721e32a72eed3 ## Getting started -{% include content/connection-modes.md %} + 1. From the Segment web app, navigate to **Connections > Catalog** and go to the **Destinations** tab of the catalog. 2. Search for *Mailchimp*, select it, and click **Configure Mailchimp**. diff --git a/src/connections/destinations/catalog/mailmodo/index.md b/src/connections/destinations/catalog/mailmodo/index.md index 41f65761c0..8c6fdec7a2 100644 --- a/src/connections/destinations/catalog/mailmodo/index.md +++ b/src/connections/destinations/catalog/mailmodo/index.md @@ -12,7 +12,7 @@ Mailmodo maintains this destination. For any issues with the destination, [conta ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for **Mailmodo** in the Destinations Catalog, and select the **Mailmodo** destination. diff --git a/src/connections/destinations/catalog/mammoth/index.md b/src/connections/destinations/catalog/mammoth/index.md index f596d63edf..ad69629dea 100644 --- a/src/connections/destinations/catalog/mammoth/index.md +++ b/src/connections/destinations/catalog/mammoth/index.md @@ -14,7 +14,7 @@ This destination is maintained by [Mammoth](https://mammoth.io). For any issues ## Getting Started -{% include content/connection-modes.md %} + There are three steps to get started using Mammoth with Segment. First, [register for an account with Mammoth](https://mammoth.io/register/choose/starter). diff --git a/src/connections/destinations/catalog/markettailor/index.md b/src/connections/destinations/catalog/markettailor/index.md index 390aa01c4c..c86917475a 100644 --- a/src/connections/destinations/catalog/markettailor/index.md +++ b/src/connections/destinations/catalog/markettailor/index.md @@ -8,7 +8,7 @@ id: 6096714984bdd26c427c9250 Markettailor maintains this destination. For any issues with the destination, contact the Markettailor Support team. ## Getting Started -{% include content/connection-modes.md %} + 1. From the destinations catalog page in the Segment App, click **Add destination**. 2. Search for “Markettailor” in the destinations Catalog, and select the Markettailor destination. diff --git a/src/connections/destinations/catalog/matcha/index.md b/src/connections/destinations/catalog/matcha/index.md index 1e07897836..8f22840d3c 100644 --- a/src/connections/destinations/catalog/matcha/index.md +++ b/src/connections/destinations/catalog/matcha/index.md @@ -9,7 +9,7 @@ This destination is maintained by Matcha. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for **Matcha** in the Destinations Catalog, and select the **Matcha** destination. diff --git a/src/connections/destinations/catalog/matomo/index.md b/src/connections/destinations/catalog/matomo/index.md index aa3379b220..4192b40457 100644 --- a/src/connections/destinations/catalog/matomo/index.md +++ b/src/connections/destinations/catalog/matomo/index.md @@ -11,7 +11,7 @@ Segment’s Matomo destination code is open-source and can be viewed on GitHub: ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Matomo" in the Catalog, select it, and choose which of your sources to connect the destination to. Note the source must be sending events using our JavaScript library Analytics.js. diff --git a/src/connections/destinations/catalog/maxia/index.md b/src/connections/destinations/catalog/maxia/index.md index 9b83df7cf0..26b888b62f 100644 --- a/src/connections/destinations/catalog/maxia/index.md +++ b/src/connections/destinations/catalog/maxia/index.md @@ -13,7 +13,7 @@ This destination is maintained by Maxia. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. Login to [Segment](https://app.segment.com/) and navigate to the Destinations catalog page. 2. Search for and select "Maxia" in the Destinations Catalog. diff --git a/src/connections/destinations/catalog/metacx/index.md b/src/connections/destinations/catalog/metacx/index.md index 6406dc7d75..fec99f471a 100644 --- a/src/connections/destinations/catalog/metacx/index.md +++ b/src/connections/destinations/catalog/metacx/index.md @@ -11,7 +11,7 @@ This destination is maintained by MetaCX. For any issues with the destination, c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "MetaCX" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/mixpanel/index.md b/src/connections/destinations/catalog/mixpanel/index.md index f37a1fe3cb..9b827b57a0 100644 --- a/src/connections/destinations/catalog/mixpanel/index.md +++ b/src/connections/destinations/catalog/mixpanel/index.md @@ -15,7 +15,7 @@ Segment's Mixpanel destination code is open source and available on GitHub. You ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment app Destinations page click on **Add Destination**. 2. Search for Mixpanel in the Destinations Catalog and confirm the Source to connect to. diff --git a/src/connections/destinations/catalog/modern-pricing/index.md b/src/connections/destinations/catalog/modern-pricing/index.md index b84538a82d..762ed41c0b 100644 --- a/src/connections/destinations/catalog/modern-pricing/index.md +++ b/src/connections/destinations/catalog/modern-pricing/index.md @@ -13,7 +13,7 @@ This destination is maintained by Modern Pricing. For any issues with the destin ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Modern Pricing" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/moesif-api-analytics/index.md b/src/connections/destinations/catalog/moesif-api-analytics/index.md index 1d71c0f7e8..e38d846fca 100644 --- a/src/connections/destinations/catalog/moesif-api-analytics/index.md +++ b/src/connections/destinations/catalog/moesif-api-analytics/index.md @@ -11,7 +11,7 @@ This destination is maintained by Moesif. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Moesif" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/mouseflow/index.md b/src/connections/destinations/catalog/mouseflow/index.md index d5bab422d3..b60a2d0603 100644 --- a/src/connections/destinations/catalog/mouseflow/index.md +++ b/src/connections/destinations/catalog/mouseflow/index.md @@ -7,7 +7,7 @@ id: 54521fd925e721e32a72eeda ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Mouseflow" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/movable-ink/index.md b/src/connections/destinations/catalog/movable-ink/index.md index 1921068bdb..48ae212ade 100644 --- a/src/connections/destinations/catalog/movable-ink/index.md +++ b/src/connections/destinations/catalog/movable-ink/index.md @@ -11,7 +11,7 @@ This destination is maintained by [Movable Ink](https://movableink.com/). If you ## Getting Started -{% include content/connection-modes.md %} + Perform the following steps to get started with Segment's Movable Ink destination: 1. Ensure you have an active Movable Ink account. diff --git a/src/connections/destinations/catalog/msg91/index.md b/src/connections/destinations/catalog/msg91/index.md index 26d02369a9..63493e01fa 100644 --- a/src/connections/destinations/catalog/msg91/index.md +++ b/src/connections/destinations/catalog/msg91/index.md @@ -12,7 +12,7 @@ This destination is maintained by MSG91. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From your Segment UI's Destinations page click on "Add Destination". diff --git a/src/connections/destinations/catalog/mutiny/index.md b/src/connections/destinations/catalog/mutiny/index.md index 0a3a3211dc..86ebf76f76 100644 --- a/src/connections/destinations/catalog/mutiny/index.md +++ b/src/connections/destinations/catalog/mutiny/index.md @@ -9,7 +9,7 @@ This destination is maintained by Mutiny. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + To set up Mutiny to receive Segment data: 1. From your Segment Project's Destinations page click on "Add Destination". diff --git a/src/connections/destinations/catalog/nat/index.md b/src/connections/destinations/catalog/nat/index.md index cef7aec663..110c73b376 100644 --- a/src/connections/destinations/catalog/nat/index.md +++ b/src/connections/destinations/catalog/nat/index.md @@ -11,7 +11,7 @@ This destination is maintained by Nat.app. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click "Add Destination". 2. Search for "Nat.app" in the Destinations Catalog, and select the "Nat.app" destination. diff --git a/src/connections/destinations/catalog/natero/index.md b/src/connections/destinations/catalog/natero/index.md index 62e2beb7c4..98ecd0f100 100644 --- a/src/connections/destinations/catalog/natero/index.md +++ b/src/connections/destinations/catalog/natero/index.md @@ -7,7 +7,7 @@ id: 54bee265db31d978f14a7e21 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Natero" in the Destinations Catalog, and select the "Natero" destination. diff --git a/src/connections/destinations/catalog/new-relic/index.md b/src/connections/destinations/catalog/new-relic/index.md index b06a27baa1..9b89485deb 100644 --- a/src/connections/destinations/catalog/new-relic/index.md +++ b/src/connections/destinations/catalog/new-relic/index.md @@ -7,7 +7,7 @@ id: 54521fd925e721e32a72eee0 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "New Relic" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/ninetailed/index.md b/src/connections/destinations/catalog/ninetailed/index.md index ff8aa35b2a..a0660caf90 100644 --- a/src/connections/destinations/catalog/ninetailed/index.md +++ b/src/connections/destinations/catalog/ninetailed/index.md @@ -11,7 +11,7 @@ This destination is maintained by Ninetailed. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Ninetailed" in the Destinations Catalog, and select the Ninetailed destination. diff --git a/src/connections/destinations/catalog/noora/index.md b/src/connections/destinations/catalog/noora/index.md index 369b34d490..ac008ab658 100644 --- a/src/connections/destinations/catalog/noora/index.md +++ b/src/connections/destinations/catalog/noora/index.md @@ -9,7 +9,7 @@ This destination is maintained by Noora. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. Navigate to the Contacts tab while in your Noora workspace's Admin view. 2. Click **+** to add a Contact source and choose **Connect to Segment**. diff --git a/src/connections/destinations/catalog/onesignal-new/index.md b/src/connections/destinations/catalog/onesignal-new/index.md index 320320affe..08c7fbddc3 100644 --- a/src/connections/destinations/catalog/onesignal-new/index.md +++ b/src/connections/destinations/catalog/onesignal-new/index.md @@ -13,7 +13,7 @@ This destination is maintained by OneSignal. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. Log in to the [OneSignal Dashboard](https://app.onesignal.com/){:target="_new"} 2. Navigate to **Segment App** -> **Settings** -> **Analytics** -> **Segment.com** and click **Activate**. diff --git a/src/connections/destinations/catalog/optimizely-full-stack/index.md b/src/connections/destinations/catalog/optimizely-full-stack/index.md index f00299f53b..8bc4e81806 100644 --- a/src/connections/destinations/catalog/optimizely-full-stack/index.md +++ b/src/connections/destinations/catalog/optimizely-full-stack/index.md @@ -7,7 +7,7 @@ id: 59d3b44b8f1480000104be6b --- ## Getting Started -{% include content/connection-modes.md %} + Segment's **Optimizely Full Stack (previously Optimizely X)** destination supports the following Optimizely products: diff --git a/src/connections/destinations/catalog/orb/index.md b/src/connections/destinations/catalog/orb/index.md index 537de6ee27..3c899167b6 100644 --- a/src/connections/destinations/catalog/orb/index.md +++ b/src/connections/destinations/catalog/orb/index.md @@ -9,7 +9,7 @@ Orb maintains this destination. For any issues with the destination, [contact th ## Getting started -{% include content/connection-modes.md %} + 1. Navigate to **Connections** and click **Add Destination** in the Segment app. 2. Search for *Orb* in the Destinations Catalog, and select the **Orb** destination. diff --git a/src/connections/destinations/catalog/owneriq-pixel/index.md b/src/connections/destinations/catalog/owneriq-pixel/index.md index c4601e17c3..05d11696e4 100644 --- a/src/connections/destinations/catalog/owneriq-pixel/index.md +++ b/src/connections/destinations/catalog/owneriq-pixel/index.md @@ -11,7 +11,7 @@ This destination is maintained by OwnerIQ. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "OwnerIQ" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/parsely/index.md b/src/connections/destinations/catalog/parsely/index.md index f5882ea961..86dc3513b3 100644 --- a/src/connections/destinations/catalog/parsely/index.md +++ b/src/connections/destinations/catalog/parsely/index.md @@ -8,7 +8,7 @@ id: 558c9f7b0a20f4e22f0fb3bc ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Parsely" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/pendo/index.md b/src/connections/destinations/catalog/pendo/index.md index a3cd8916f1..17fe5e77b0 100644 --- a/src/connections/destinations/catalog/pendo/index.md +++ b/src/connections/destinations/catalog/pendo/index.md @@ -9,7 +9,7 @@ Pendo maintains this destination. For any issues with the destination, [contact ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Pendo" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/perfect-audience/index.md b/src/connections/destinations/catalog/perfect-audience/index.md index 9bcff6547c..93545bb1fa 100644 --- a/src/connections/destinations/catalog/perfect-audience/index.md +++ b/src/connections/destinations/catalog/perfect-audience/index.md @@ -9,7 +9,7 @@ If you notice any gaps, out-dated information or simply want to leave some feedb ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Perfect Audience" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/perkville/index.md b/src/connections/destinations/catalog/perkville/index.md index 1b61d811e9..c788e4c2b5 100644 --- a/src/connections/destinations/catalog/perkville/index.md +++ b/src/connections/destinations/catalog/perkville/index.md @@ -12,7 +12,7 @@ The Perkville Destination is in beta, which means that they are still actively d ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Perkville" in the Destinations Catalog, and select the "Perkville" destination. diff --git a/src/connections/destinations/catalog/persistiq/index.md b/src/connections/destinations/catalog/persistiq/index.md index 5f1ac965f4..3fe140f2ba 100644 --- a/src/connections/destinations/catalog/persistiq/index.md +++ b/src/connections/destinations/catalog/persistiq/index.md @@ -12,7 +12,7 @@ This destination is maintained by PersistIQ. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "PersistIQ" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/personyze/index.md b/src/connections/destinations/catalog/personyze/index.md index 5aeccff885..be9c712b29 100644 --- a/src/connections/destinations/catalog/personyze/index.md +++ b/src/connections/destinations/catalog/personyze/index.md @@ -12,7 +12,7 @@ This destination is maintained by Personyze. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Personyze" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/pixelme/index.md b/src/connections/destinations/catalog/pixelme/index.md index b83a76fd9a..a49491f161 100644 --- a/src/connections/destinations/catalog/pixelme/index.md +++ b/src/connections/destinations/catalog/pixelme/index.md @@ -13,7 +13,7 @@ This destination is maintained by PixelMe. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "PixelMe" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/podsights/index.md b/src/connections/destinations/catalog/podsights/index.md index dcee6e7799..a43635cf4b 100644 --- a/src/connections/destinations/catalog/podsights/index.md +++ b/src/connections/destinations/catalog/podsights/index.md @@ -12,7 +12,7 @@ This destination is maintained by Podsights. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. diff --git a/src/connections/destinations/catalog/posthog/index.md b/src/connections/destinations/catalog/posthog/index.md index 042f5e1428..b601022555 100644 --- a/src/connections/destinations/catalog/posthog/index.md +++ b/src/connections/destinations/catalog/posthog/index.md @@ -9,7 +9,7 @@ This destination is maintained by PostHog. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "PostHog" in the Destinations Catalog, and select the PostHog destination. diff --git a/src/connections/destinations/catalog/productbird/index.md b/src/connections/destinations/catalog/productbird/index.md index 2e9d25d23b..89ef48e965 100644 --- a/src/connections/destinations/catalog/productbird/index.md +++ b/src/connections/destinations/catalog/productbird/index.md @@ -9,7 +9,7 @@ This destination is maintained by ProductBird. For any issues with the destinati ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "ProductBird" in the Destinations Catalog, and select the ProductBird destination. diff --git a/src/connections/destinations/catalog/profitwell/index.md b/src/connections/destinations/catalog/profitwell/index.md index 131e15e641..37dc34e1a8 100644 --- a/src/connections/destinations/catalog/profitwell/index.md +++ b/src/connections/destinations/catalog/profitwell/index.md @@ -12,7 +12,7 @@ This destination is maintained by ProfitWell. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "ProfitWell" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/proof-experiences/index.md b/src/connections/destinations/catalog/proof-experiences/index.md index 7cdba003b6..cc439893a5 100644 --- a/src/connections/destinations/catalog/proof-experiences/index.md +++ b/src/connections/destinations/catalog/proof-experiences/index.md @@ -15,7 +15,7 @@ This destination is maintained by Proof. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Proof Experiences" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/prosperstack/index.md b/src/connections/destinations/catalog/prosperstack/index.md index 9d90a9227d..01928c79a6 100644 --- a/src/connections/destinations/catalog/prosperstack/index.md +++ b/src/connections/destinations/catalog/prosperstack/index.md @@ -10,7 +10,7 @@ ProsperStack maintains this destination. For any issues with the ProsperStack De ## Getting Started -{% include content/connection-modes.md %} + ### Automated setup diff --git a/src/connections/destinations/catalog/qualaroo/index.md b/src/connections/destinations/catalog/qualaroo/index.md index f2a3d6ade9..bd448ce5e7 100644 --- a/src/connections/destinations/catalog/qualaroo/index.md +++ b/src/connections/destinations/catalog/qualaroo/index.md @@ -7,7 +7,7 @@ id: 54521fda25e721e32a72eee8 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Qualaroo" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/quanticmind/index.md b/src/connections/destinations/catalog/quanticmind/index.md index 8b01cc91d4..ca8ae31dcb 100644 --- a/src/connections/destinations/catalog/quanticmind/index.md +++ b/src/connections/destinations/catalog/quanticmind/index.md @@ -7,7 +7,7 @@ id: 54521fd725e721e32a72eec2 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "QuanticMind" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/quora-conversion-pixel/index.md b/src/connections/destinations/catalog/quora-conversion-pixel/index.md index e36ee81c29..6dddf49404 100644 --- a/src/connections/destinations/catalog/quora-conversion-pixel/index.md +++ b/src/connections/destinations/catalog/quora-conversion-pixel/index.md @@ -7,7 +7,7 @@ id: 5952698570a3e552b9575519 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Quora" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/recombee-ai/index.md b/src/connections/destinations/catalog/recombee-ai/index.md index 6bc93101e0..25e28eb43d 100644 --- a/src/connections/destinations/catalog/recombee-ai/index.md +++ b/src/connections/destinations/catalog/recombee-ai/index.md @@ -17,7 +17,7 @@ This destination is maintained by Recombee. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. If you don't already have one, set up a [Recombee account](https://recombee.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners). 1. From the Destinations catalog page in the Segment App, click **Add Destination**. diff --git a/src/connections/destinations/catalog/refersion/index.md b/src/connections/destinations/catalog/refersion/index.md index 8d569281ea..bf88ad8cff 100644 --- a/src/connections/destinations/catalog/refersion/index.md +++ b/src/connections/destinations/catalog/refersion/index.md @@ -11,7 +11,7 @@ This destination is maintained by Refersion. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + You have two options to connect - either automatically within your Refersion dashboard, or manually by copying and pasting an API key into the Segment dashboard. diff --git a/src/connections/destinations/catalog/refiner/index.md b/src/connections/destinations/catalog/refiner/index.md index 59e7e15224..cdfdff9836 100644 --- a/src/connections/destinations/catalog/refiner/index.md +++ b/src/connections/destinations/catalog/refiner/index.md @@ -12,7 +12,7 @@ This destination is maintained by Refiner. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Refiner" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/regal/index.md b/src/connections/destinations/catalog/regal/index.md index ac710ea0ff..8ea36ceea4 100644 --- a/src/connections/destinations/catalog/regal/index.md +++ b/src/connections/destinations/catalog/regal/index.md @@ -20,7 +20,7 @@ Regal.io maintains this destination. For any issues with the destination, contac ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Regal.io" in the Destinations Catalog, and select the "Regal.io" destination. diff --git a/src/connections/destinations/catalog/retentive/index.md b/src/connections/destinations/catalog/retentive/index.md index 0e155669a7..223c1080f9 100644 --- a/src/connections/destinations/catalog/retentive/index.md +++ b/src/connections/destinations/catalog/retentive/index.md @@ -8,7 +8,7 @@ Retentive maintains this destination. For any issues with the destination, [cont ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. In the Destinations Catalog, search for "Retentive" and select the Retentive destination. diff --git a/src/connections/destinations/catalog/retently/index.md b/src/connections/destinations/catalog/retently/index.md index 2b858be07e..2328ecd744 100644 --- a/src/connections/destinations/catalog/retently/index.md +++ b/src/connections/destinations/catalog/retently/index.md @@ -11,7 +11,7 @@ This destination is maintained by Retently. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + The Retently destination allows you to send transactional surveys when an event is triggered in Segment. diff --git a/src/connections/destinations/catalog/retina/index.md b/src/connections/destinations/catalog/retina/index.md index 0c54e74eb6..55ef9bf79b 100644 --- a/src/connections/destinations/catalog/retina/index.md +++ b/src/connections/destinations/catalog/retina/index.md @@ -15,7 +15,7 @@ Retina AI maintains this destination. For any issues with the destination, conta ## Getting Started -{% include content/connection-modes.md %} + To integrate Retina AI with Segment as a **Destination**: 1. From your Segment UI's Destinations page click on “Add Destination”. diff --git a/src/connections/destinations/catalog/richpanel/index.md b/src/connections/destinations/catalog/richpanel/index.md index e37e68901a..9ed1b950db 100644 --- a/src/connections/destinations/catalog/richpanel/index.md +++ b/src/connections/destinations/catalog/richpanel/index.md @@ -11,7 +11,7 @@ This destination is maintained by Richpanel. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Richpanel" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/saasquatch-v2/index.md b/src/connections/destinations/catalog/saasquatch-v2/index.md index 4b3cf94326..292402e29f 100644 --- a/src/connections/destinations/catalog/saasquatch-v2/index.md +++ b/src/connections/destinations/catalog/saasquatch-v2/index.md @@ -10,7 +10,7 @@ SaaSquatch maintains this destination. For any issues with the destination, [con ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for **SaaSquatch v2** in the Destinations Catalog, and select the **SaaSquatch v2** destination. diff --git a/src/connections/destinations/catalog/sailthru-v2/index.md b/src/connections/destinations/catalog/sailthru-v2/index.md index d39681c934..ff82e3e2a7 100644 --- a/src/connections/destinations/catalog/sailthru-v2/index.md +++ b/src/connections/destinations/catalog/sailthru-v2/index.md @@ -11,7 +11,7 @@ Sailthru maintains this destination. For any issues with the destination, [conta ## Getting Started -{% include content/connection-modes.md %} + 1. Contact the [Sailthru Support team](mailto:support@sailthru.com) to enable your account for EXTID support and request your integration-specific API Key and Secret. 2. From the Destinations catalog page in the Segment App, click **Add Destination**. diff --git a/src/connections/destinations/catalog/salescamp-crm/index.md b/src/connections/destinations/catalog/salescamp-crm/index.md index 8aaa7b06d5..2cd7331f6f 100644 --- a/src/connections/destinations/catalog/salescamp-crm/index.md +++ b/src/connections/destinations/catalog/salescamp-crm/index.md @@ -12,7 +12,7 @@ This destination is maintained by [Salescamp](https://www.salescamp.app/?utm_sou ## Getting Started Segment's Salescamp destination allows you to identify leads without using rest APIs. -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Salescamp" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/salesforce-dmp/index.md b/src/connections/destinations/catalog/salesforce-dmp/index.md index 10fab771fa..ae8e79cda8 100644 --- a/src/connections/destinations/catalog/salesforce-dmp/index.md +++ b/src/connections/destinations/catalog/salesforce-dmp/index.md @@ -17,7 +17,7 @@ us improve the Salesforce DMP Destination and its documentation, ## Getting Started -{% include content/connection-modes.md %} + Next, configure the Destination in the Segment web app: diff --git a/src/connections/destinations/catalog/salesforce-marketing-cloud/index.md b/src/connections/destinations/catalog/salesforce-marketing-cloud/index.md index a7ed34e57c..eee5be59c0 100644 --- a/src/connections/destinations/catalog/salesforce-marketing-cloud/index.md +++ b/src/connections/destinations/catalog/salesforce-marketing-cloud/index.md @@ -35,7 +35,7 @@ Before you start working with SFMC, work through the following sections to confi ### Confirm that Salesforce Marketing Cloud supports your source type and connection mode -{% include content/connection-modes.md %} + ### Grant Segment API access to Salesforce Marketing Cloud diff --git a/src/connections/destinations/catalog/savio/index.md b/src/connections/destinations/catalog/savio/index.md index 7cb09e5913..197ebdc10f 100644 --- a/src/connections/destinations/catalog/savio/index.md +++ b/src/connections/destinations/catalog/savio/index.md @@ -9,7 +9,7 @@ This destination is maintained by Savio. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Savio" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/scopeai/index.md b/src/connections/destinations/catalog/scopeai/index.md index 00bcbc385d..bdd99a680b 100644 --- a/src/connections/destinations/catalog/scopeai/index.md +++ b/src/connections/destinations/catalog/scopeai/index.md @@ -11,7 +11,7 @@ This destination is maintained by ScopeAI. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "ScopeAI" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/screeb/index.md b/src/connections/destinations/catalog/screeb/index.md index 463f14a346..47aa805e46 100644 --- a/src/connections/destinations/catalog/screeb/index.md +++ b/src/connections/destinations/catalog/screeb/index.md @@ -9,7 +9,7 @@ This destination is maintained by Screeb. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Screeb" in the Destinations Catalog, and select the "Screeb" destination. diff --git a/src/connections/destinations/catalog/scuba-analytics/index.md b/src/connections/destinations/catalog/scuba-analytics/index.md index 46c8229ff8..da22c60650 100644 --- a/src/connections/destinations/catalog/scuba-analytics/index.md +++ b/src/connections/destinations/catalog/scuba-analytics/index.md @@ -12,7 +12,7 @@ This destination is maintained by Scuba Analytics. For any issues with the desti ## Getting Started -{% include content/connection-modes.md %} + To set up the Scuba Analytics Integration, first you will need: The root URL for your destination cloud storage directory diff --git a/src/connections/destinations/catalog/segmetrics/index.md b/src/connections/destinations/catalog/segmetrics/index.md index 735feacb9d..053d746fdb 100644 --- a/src/connections/destinations/catalog/segmetrics/index.md +++ b/src/connections/destinations/catalog/segmetrics/index.md @@ -9,7 +9,7 @@ This destination is maintained by SegMetrics. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. Go to your [Integrations tab](https://app.segmetrics.io/a/integration) in SegMetrics, and click **Connect** for the Segment Integration. 2. Go to your [Account Settings](https://app.segmetrics.io/a/account/edit) and copy your SegMetrics `Account Id` and `API Key`. diff --git a/src/connections/destinations/catalog/sentry/index.md b/src/connections/destinations/catalog/sentry/index.md index e6cf2cb4cf..4a2daa8f02 100644 --- a/src/connections/destinations/catalog/sentry/index.md +++ b/src/connections/destinations/catalog/sentry/index.md @@ -7,7 +7,7 @@ id: 54521fda25e721e32a72eef0 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Sentry" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/serenytics/index.md b/src/connections/destinations/catalog/serenytics/index.md index 52968773e0..27d9984ed1 100644 --- a/src/connections/destinations/catalog/serenytics/index.md +++ b/src/connections/destinations/catalog/serenytics/index.md @@ -15,7 +15,7 @@ This destination is maintained by the company Serenytics. For any issues with th ## Getting Started -{% include content/connection-modes.md %} + From Serenytics app using OAuth: 1. In Serenytics, in the [datasources list](https://app.serenytics.com/studio/data_sources), click on the button `New data source` and select the tab `Web services and API` and click on `Segment`. diff --git a/src/connections/destinations/catalog/sherlock/index.md b/src/connections/destinations/catalog/sherlock/index.md index 390ac0a0dc..eee50a9015 100644 --- a/src/connections/destinations/catalog/sherlock/index.md +++ b/src/connections/destinations/catalog/sherlock/index.md @@ -10,7 +10,7 @@ This integration is maintained by Sherlock. For questions or help with your inte ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Sherock" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/signl4-alerting/index.md b/src/connections/destinations/catalog/signl4-alerting/index.md index f851a5a36c..98ba9eba02 100644 --- a/src/connections/destinations/catalog/signl4-alerting/index.md +++ b/src/connections/destinations/catalog/signl4-alerting/index.md @@ -13,7 +13,7 @@ This destination is maintained by Derdack SIGNL4. For any issues with the destin ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in your Segment Workspace, click Add Destination. 2. Search for “SIGNL4” in the Destinations Catalog, and select the SIGNL4 Alerting destination. diff --git a/src/connections/destinations/catalog/simplereach/index.md b/src/connections/destinations/catalog/simplereach/index.md index b8edc35175..8d9dc97a85 100644 --- a/src/connections/destinations/catalog/simplereach/index.md +++ b/src/connections/destinations/catalog/simplereach/index.md @@ -7,7 +7,7 @@ SimpleReach helps brands, agencies, and publishers increase the impact of their ## Getting Started -{% include content/connection-modes.md %} + 1. From your Segment UI's Destinations page click on "Add Destination". 2. Search for "SimpleReach" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/singular/index.md b/src/connections/destinations/catalog/singular/index.md index 75acd773af..7028aeaf97 100644 --- a/src/connections/destinations/catalog/singular/index.md +++ b/src/connections/destinations/catalog/singular/index.md @@ -9,7 +9,7 @@ This destination is maintained by Singular. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Singular" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/skalin/index.md b/src/connections/destinations/catalog/skalin/index.md index d426c97e5a..4c22a3dd32 100644 --- a/src/connections/destinations/catalog/skalin/index.md +++ b/src/connections/destinations/catalog/skalin/index.md @@ -11,7 +11,7 @@ This destination is maintained by Skalin. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for **Skalin** in the Destinations Catalog, and select the **Skalin** destination. diff --git a/src/connections/destinations/catalog/slack/index.md b/src/connections/destinations/catalog/slack/index.md index 49b2fe72f4..a5b6608b38 100644 --- a/src/connections/destinations/catalog/slack/index.md +++ b/src/connections/destinations/catalog/slack/index.md @@ -8,7 +8,7 @@ id: 56748689e954a874ca44ccfb ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Slack" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/slicingdice/index.md b/src/connections/destinations/catalog/slicingdice/index.md index 78eb8604da..7019d333aa 100644 --- a/src/connections/destinations/catalog/slicingdice/index.md +++ b/src/connections/destinations/catalog/slicingdice/index.md @@ -12,7 +12,7 @@ This destination is maintained by SlicingDice. For any issues with the destinati ## Getting Started -{% include content/connection-modes.md %} + 1. Login into your SlicingDice's Control Panel account to create a connection between SlicingDice and Segment. 2. Follow the [Connecting to Segment guide](https://docs.slicingdice.com/data_warehouse_module/connecting_external_tools/segment.html) available in SlicingDice documentation to create and allow this connection. diff --git a/src/connections/destinations/catalog/smartlook/index.md b/src/connections/destinations/catalog/smartlook/index.md index 6625ecc492..63585a52fe 100644 --- a/src/connections/destinations/catalog/smartlook/index.md +++ b/src/connections/destinations/catalog/smartlook/index.md @@ -12,7 +12,7 @@ This destination is maintained by Smartlook. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Smartlook" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/snapboard/index.md b/src/connections/destinations/catalog/snapboard/index.md index d7c0f5a620..116fe447aa 100644 --- a/src/connections/destinations/catalog/snapboard/index.md +++ b/src/connections/destinations/catalog/snapboard/index.md @@ -16,7 +16,7 @@ This destination is maintained by Snapboard. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. diff --git a/src/connections/destinations/catalog/snapengage/index.md b/src/connections/destinations/catalog/snapengage/index.md index 7edb797e1e..ac03f6beea 100644 --- a/src/connections/destinations/catalog/snapengage/index.md +++ b/src/connections/destinations/catalog/snapengage/index.md @@ -7,7 +7,7 @@ SnapEngage is an enterprise chat software for businesses. It allows you to captu ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. diff --git a/src/connections/destinations/catalog/spideo/index.md b/src/connections/destinations/catalog/spideo/index.md index f30a14306b..9eda48d165 100644 --- a/src/connections/destinations/catalog/spideo/index.md +++ b/src/connections/destinations/catalog/spideo/index.md @@ -9,7 +9,7 @@ This destination is maintained by Spideo. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Spideo" in the Destinations Catalog, and select the "Spideo" destination. diff --git a/src/connections/destinations/catalog/split/index.md b/src/connections/destinations/catalog/split/index.md index d1fa2599b3..7aefdc85b2 100644 --- a/src/connections/destinations/catalog/split/index.md +++ b/src/connections/destinations/catalog/split/index.md @@ -11,7 +11,7 @@ This destination is maintained by [Split](https://split.io/?utm_source=segmentio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for Split in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/sprig-cloud/index.md b/src/connections/destinations/catalog/sprig-cloud/index.md index b100f1a24d..f4b4b4e43a 100644 --- a/src/connections/destinations/catalog/sprig-cloud/index.md +++ b/src/connections/destinations/catalog/sprig-cloud/index.md @@ -17,7 +17,7 @@ Segment placed the Classic destination framework in maintenance mode. Sprig enco ## Getting Started with Classic -{% include content/connection-modes.md %} + 1. In the Segment web app, navigate to **Catalog > Destinations**. 2. Type *Sprig* in the **Filter Destinations** field. diff --git a/src/connections/destinations/catalog/startdeliver/index.md b/src/connections/destinations/catalog/startdeliver/index.md index cc732bde46..d005183312 100644 --- a/src/connections/destinations/catalog/startdeliver/index.md +++ b/src/connections/destinations/catalog/startdeliver/index.md @@ -11,7 +11,7 @@ Startdeliver maintains this destination. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Startdeliver" in the Destinations Catalog, and select the "Startdeliver" destination. diff --git a/src/connections/destinations/catalog/statsig/index.md b/src/connections/destinations/catalog/statsig/index.md index ce63f32e76..83ddb5353e 100644 --- a/src/connections/destinations/catalog/statsig/index.md +++ b/src/connections/destinations/catalog/statsig/index.md @@ -8,7 +8,7 @@ This destination is maintained by Statsig. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for “Statsig” in the Destinations Catalog, and select the “Statsig” destination. diff --git a/src/connections/destinations/catalog/stonly/index.md b/src/connections/destinations/catalog/stonly/index.md index beae05624f..f919f1d5f3 100644 --- a/src/connections/destinations/catalog/stonly/index.md +++ b/src/connections/destinations/catalog/stonly/index.md @@ -14,7 +14,7 @@ This destination is maintained by Stonly. For any issues with the destination, [ Before you start, make sure Stonly destination supports the source type and connection mode you've chosen to implement. You can learn more about [connection modes here](/docs/connections/destinations/#connection-modes). -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Stonly" within the Destinations Catalog, and select Stonly destination. diff --git a/src/connections/destinations/catalog/stories/index.md b/src/connections/destinations/catalog/stories/index.md index 530d9dc964..48e86151e3 100644 --- a/src/connections/destinations/catalog/stories/index.md +++ b/src/connections/destinations/catalog/stories/index.md @@ -12,7 +12,7 @@ This destination is maintained by Stories. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Stories" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/stormly/index.md b/src/connections/destinations/catalog/stormly/index.md index a14f62fa41..457f9fa792 100644 --- a/src/connections/destinations/catalog/stormly/index.md +++ b/src/connections/destinations/catalog/stormly/index.md @@ -9,7 +9,7 @@ This destination is maintained by Stormly. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Stormly" in the Destinations Catalog, and select the Stormly destination. diff --git a/src/connections/destinations/catalog/strikedeck/index.md b/src/connections/destinations/catalog/strikedeck/index.md index 7b1a9fffa0..f0ba246618 100644 --- a/src/connections/destinations/catalog/strikedeck/index.md +++ b/src/connections/destinations/catalog/strikedeck/index.md @@ -12,7 +12,7 @@ Strikedeck maintains this documentation. For any issues with the destination, [c ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Strikedeck" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/survicate/index.md b/src/connections/destinations/catalog/survicate/index.md index f176cfce1b..182701ffeb 100644 --- a/src/connections/destinations/catalog/survicate/index.md +++ b/src/connections/destinations/catalog/survicate/index.md @@ -12,7 +12,7 @@ This destination is maintained by Survicate. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Survicate" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/tag-injector/index.md b/src/connections/destinations/catalog/tag-injector/index.md index e7bd523cf4..b5085b13c4 100644 --- a/src/connections/destinations/catalog/tag-injector/index.md +++ b/src/connections/destinations/catalog/tag-injector/index.md @@ -11,7 +11,7 @@ _**NOTE:** Tag Injector is only available for select customers at this time._ ## Getting Started -{% include content/connection-modes.md %} + 1. Once you have access, with the link provided confirm the Source you'd like to connect to. 2. You have the following configuration options which will manipulate the page at runtime: diff --git a/src/connections/destinations/catalog/talonone/index.md b/src/connections/destinations/catalog/talonone/index.md index 32ab0fef1b..8b4028d709 100644 --- a/src/connections/destinations/catalog/talonone/index.md +++ b/src/connections/destinations/catalog/talonone/index.md @@ -20,7 +20,7 @@ This destination is maintained by Talon.One. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for `Talon.One` in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/tamber/index.md b/src/connections/destinations/catalog/tamber/index.md index c939231077..3684c4b19e 100644 --- a/src/connections/destinations/catalog/tamber/index.md +++ b/src/connections/destinations/catalog/tamber/index.md @@ -11,7 +11,7 @@ This destination is maintained by Tamber. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From your [Tamber dashboard](https://dashboard.tamber.com), head to Sources > Segment and click enable. 2. Follow the instructions to configure your Destination and optionally defined a custom name for your `item` and click save. diff --git a/src/connections/destinations/catalog/track-js/index.md b/src/connections/destinations/catalog/track-js/index.md index 6968e01a2f..ce018532af 100644 --- a/src/connections/destinations/catalog/track-js/index.md +++ b/src/connections/destinations/catalog/track-js/index.md @@ -7,7 +7,7 @@ id: 54521fdb25e721e32a72eef9 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Track JS" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/trackier/index.md b/src/connections/destinations/catalog/trackier/index.md index b004fdfcf0..1dd2fc1135 100644 --- a/src/connections/destinations/catalog/trackier/index.md +++ b/src/connections/destinations/catalog/trackier/index.md @@ -12,7 +12,7 @@ This destination is maintained by Trackier. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Trackier" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/trafficguard/index.md b/src/connections/destinations/catalog/trafficguard/index.md index 3455fea11b..b82e3ed7c0 100644 --- a/src/connections/destinations/catalog/trafficguard/index.md +++ b/src/connections/destinations/catalog/trafficguard/index.md @@ -12,7 +12,7 @@ This destination is maintained by TrafficGuard. ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "TrafficGuard" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/trustpilot/index.md b/src/connections/destinations/catalog/trustpilot/index.md index 4be875a6a2..1e65f8496c 100644 --- a/src/connections/destinations/catalog/trustpilot/index.md +++ b/src/connections/destinations/catalog/trustpilot/index.md @@ -9,7 +9,7 @@ This destination is maintained by Trustpilot. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Trustpilot" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/tune/index.md b/src/connections/destinations/catalog/tune/index.md index 559683b883..d041aa57d3 100644 --- a/src/connections/destinations/catalog/tune/index.md +++ b/src/connections/destinations/catalog/tune/index.md @@ -9,7 +9,7 @@ This destination is maintained by TUNE. Their code is publicly available for [iO ## Getting Started -{% include content/connection-modes.md %} + 1. From your Segment UI's Destinations page click on "Add Destination". 2. Search for "TUNE" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/tv-squared/index.md b/src/connections/destinations/catalog/tv-squared/index.md index 9a35673e81..252d085e37 100644 --- a/src/connections/destinations/catalog/tv-squared/index.md +++ b/src/connections/destinations/catalog/tv-squared/index.md @@ -7,7 +7,7 @@ id: 54521fdb25e721e32a72eefc ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. diff --git a/src/connections/destinations/catalog/unwaffle/index.md b/src/connections/destinations/catalog/unwaffle/index.md index 2c256b87b8..ef87fc2eb9 100644 --- a/src/connections/destinations/catalog/unwaffle/index.md +++ b/src/connections/destinations/catalog/unwaffle/index.md @@ -11,7 +11,7 @@ This destination is maintained by Unwaffle. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Unwaffle" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/upcall/index.md b/src/connections/destinations/catalog/upcall/index.md index dbeb14da16..d1150bb731 100644 --- a/src/connections/destinations/catalog/upcall/index.md +++ b/src/connections/destinations/catalog/upcall/index.md @@ -13,7 +13,7 @@ This destination is maintained by Upcall. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Upcall" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/useriq/index.md b/src/connections/destinations/catalog/useriq/index.md index c614bdb587..f7de1a7ee6 100644 --- a/src/connections/destinations/catalog/useriq/index.md +++ b/src/connections/destinations/catalog/useriq/index.md @@ -11,7 +11,7 @@ This destination is maintained by UserIQ. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "UserIQ" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/userleap/index.md b/src/connections/destinations/catalog/userleap/index.md index cab9c06445..956c7bc57c 100644 --- a/src/connections/destinations/catalog/userleap/index.md +++ b/src/connections/destinations/catalog/userleap/index.md @@ -12,7 +12,7 @@ Sprig maintains this destination. For any issues with the destination, consult [ > **Good to know**: This page is about the [non-Actions Sprig (formerly UserLeap) destination](/docs/connections/destinations/catalog/userleap/). There's also a page about the [Actions-framework](/docs/connections/destinations/actions/) Sprig Segment destination. Both of these destinations receive data from Segment. ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Sprig Cloud" in the Destinations Catalog, and select the Sprig Cloud destination. diff --git a/src/connections/destinations/catalog/userlike/index.md b/src/connections/destinations/catalog/userlike/index.md index f0210a0226..0e7d514e30 100644 --- a/src/connections/destinations/catalog/userlike/index.md +++ b/src/connections/destinations/catalog/userlike/index.md @@ -7,7 +7,7 @@ title: Userlike Destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Userlike" in the Catalog, select it, and choose which of your sources to connect the destination to. - keep in mind, that the Userlike destination is only compatible with our JavaScript source. diff --git a/src/connections/destinations/catalog/userlist/index.md b/src/connections/destinations/catalog/userlist/index.md index be64f11d41..1ca10faeca 100644 --- a/src/connections/destinations/catalog/userlist/index.md +++ b/src/connections/destinations/catalog/userlist/index.md @@ -11,7 +11,7 @@ This destination is maintained by Userlist. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Userlist" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/userpilot/index.md b/src/connections/destinations/catalog/userpilot/index.md index 7050356a77..4f80fc4e60 100644 --- a/src/connections/destinations/catalog/userpilot/index.md +++ b/src/connections/destinations/catalog/userpilot/index.md @@ -12,7 +12,7 @@ This destination is maintained by Userpilot. For any issues with the destination ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for *Userpilot Web Plugin* in the Catalog, select it, and choose the source you want to connect the destination to. diff --git a/src/connections/destinations/catalog/uservoice/index.md b/src/connections/destinations/catalog/uservoice/index.md index caf1a0d7d2..d83970f3d0 100644 --- a/src/connections/destinations/catalog/uservoice/index.md +++ b/src/connections/destinations/catalog/uservoice/index.md @@ -7,7 +7,7 @@ id: 54521fdc25e721e32a72ef00 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "UserVoice" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/vespucci/index.md b/src/connections/destinations/catalog/vespucci/index.md index 1e2c5797ea..961e4a4af9 100644 --- a/src/connections/destinations/catalog/vespucci/index.md +++ b/src/connections/destinations/catalog/vespucci/index.md @@ -11,7 +11,7 @@ This destination is maintained by Vespucci. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Vespucci" in the Destinations Catalog, and select the Vespucci destination. diff --git a/src/connections/destinations/catalog/vidora/index.md b/src/connections/destinations/catalog/vidora/index.md index 5824684683..9d6a9412fa 100644 --- a/src/connections/destinations/catalog/vidora/index.md +++ b/src/connections/destinations/catalog/vidora/index.md @@ -9,7 +9,7 @@ This destination is maintained by Vidora. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Vidora" in the Destinations Catalog, and select the "Vidora" destination. diff --git a/src/connections/destinations/catalog/visual-website-optimizer/index.md b/src/connections/destinations/catalog/visual-website-optimizer/index.md index 7c161bbcb9..1ce409ead3 100644 --- a/src/connections/destinations/catalog/visual-website-optimizer/index.md +++ b/src/connections/destinations/catalog/visual-website-optimizer/index.md @@ -11,7 +11,7 @@ If you notice any gaps, outdated information or simply want to leave some feedba ## Getting Started -{% include content/connection-modes.md %} + Because the VWO destination needs to be on the page right away, there are two ways for the VWO JavaScript snippet to be loaded on your page. You can either: diff --git a/src/connections/destinations/catalog/vitally/index.md b/src/connections/destinations/catalog/vitally/index.md index 311b84d08e..c6e03c81dc 100644 --- a/src/connections/destinations/catalog/vitally/index.md +++ b/src/connections/destinations/catalog/vitally/index.md @@ -10,7 +10,7 @@ This destination is maintained by Vitally. For any issues with the destination, ## Getting Started -{% include content/connection-modes.md %} + Enabling Vitally as a destination in Segment can be done in one click from your Vitally account. diff --git a/src/connections/destinations/catalog/voucherify/index.md b/src/connections/destinations/catalog/voucherify/index.md index ed9f584103..6d921d7cde 100644 --- a/src/connections/destinations/catalog/voucherify/index.md +++ b/src/connections/destinations/catalog/voucherify/index.md @@ -13,7 +13,7 @@ This destination is maintained by Voucherify. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Voucherify" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/walkme/index.md b/src/connections/destinations/catalog/walkme/index.md index 0830e4cf55..f169ead0c5 100644 --- a/src/connections/destinations/catalog/walkme/index.md +++ b/src/connections/destinations/catalog/walkme/index.md @@ -12,7 +12,7 @@ This destination is maintained by WalkMe. For any issues with the destination, [ ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "WalkMe" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/watchtower/index.md b/src/connections/destinations/catalog/watchtower/index.md index e83054d2da..c4f1b49764 100644 --- a/src/connections/destinations/catalog/watchtower/index.md +++ b/src/connections/destinations/catalog/watchtower/index.md @@ -13,7 +13,7 @@ This destination is maintained by Watchtower. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Watchtower" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/webhooks/index.md b/src/connections/destinations/catalog/webhooks/index.md index e7d85a4613..c6b44e48a6 100644 --- a/src/connections/destinations/catalog/webhooks/index.md +++ b/src/connections/destinations/catalog/webhooks/index.md @@ -10,7 +10,7 @@ Segment Webhooks submit real-time user data to your own HTTP endpoints. A Webhoo ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Webhooks" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/willow/index.md b/src/connections/destinations/catalog/willow/index.md index a448686767..946b093597 100644 --- a/src/connections/destinations/catalog/willow/index.md +++ b/src/connections/destinations/catalog/willow/index.md @@ -10,7 +10,7 @@ Willow maintains this destination. For any issues with the destination, [contact ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for **Willow** in the Destinations Catalog, and select the **Willow** destination. diff --git a/src/connections/destinations/catalog/windsor/index.md b/src/connections/destinations/catalog/windsor/index.md index 1515f736ae..3a3708c60c 100644 --- a/src/connections/destinations/catalog/windsor/index.md +++ b/src/connections/destinations/catalog/windsor/index.md @@ -15,7 +15,7 @@ You can find more information on Windsor on [the Windsor docs site](https://docs ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for "Windsor" in the Destinations Catalog, and select the Windsor destination. diff --git a/src/connections/destinations/catalog/wootric-by-inmoment/index.md b/src/connections/destinations/catalog/wootric-by-inmoment/index.md index 57c1906bbd..98fb0913a2 100644 --- a/src/connections/destinations/catalog/wootric-by-inmoment/index.md +++ b/src/connections/destinations/catalog/wootric-by-inmoment/index.md @@ -16,7 +16,7 @@ If you notice any gaps, out-dated information or simply want to leave some feedb ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "InMoment (Wootric)" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/worthy/index.md b/src/connections/destinations/catalog/worthy/index.md index b90dca3a0f..bc36baff90 100644 --- a/src/connections/destinations/catalog/worthy/index.md +++ b/src/connections/destinations/catalog/worthy/index.md @@ -9,7 +9,7 @@ rewrite: true ## Getting started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in your Segment Workspace, click **Add Destination**. 2. Search for "Worthy" in the Destinations Catalog, and select the **Worthy** destination. diff --git a/src/connections/destinations/catalog/xtremepush/index.md b/src/connections/destinations/catalog/xtremepush/index.md index adc3b08e70..56ba6b35c1 100644 --- a/src/connections/destinations/catalog/xtremepush/index.md +++ b/src/connections/destinations/catalog/xtremepush/index.md @@ -13,7 +13,7 @@ This destination is maintained by Xtremepush. For any issues with the destinatio ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Xtremepush" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/destinations/catalog/zapier/index.md b/src/connections/destinations/catalog/zapier/index.md index 4d1f7b7c8d..c28b8822f0 100644 --- a/src/connections/destinations/catalog/zapier/index.md +++ b/src/connections/destinations/catalog/zapier/index.md @@ -8,7 +8,7 @@ id: 57c4996480412f644ff29f78 ## Getting Started -{% include content/connection-modes.md %} + 1. Navigate to your Zapier dashboard and select "Make A Zap" - you'll need at least one Zap so you can tell Segment where to route data later on. 2. Search "Webhooks", then select "Catch Raw Hook" (Segment POSTs raw data to Zapier using our destination). diff --git a/src/connections/destinations/catalog/zendesk/index.md b/src/connections/destinations/catalog/zendesk/index.md index 4323da903c..968de0c307 100644 --- a/src/connections/destinations/catalog/zendesk/index.md +++ b/src/connections/destinations/catalog/zendesk/index.md @@ -8,7 +8,7 @@ id: 54521fdc25e721e32a72ef06 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. diff --git a/src/connections/destinations/catalog/zopim/index.md b/src/connections/destinations/catalog/zopim/index.md index 306daf052c..3047a59384 100644 --- a/src/connections/destinations/catalog/zopim/index.md +++ b/src/connections/destinations/catalog/zopim/index.md @@ -9,7 +9,7 @@ id: 54ec1baddb31d978f14aa7f9 ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Zopim" in the Catalog, select it, and choose which of your sources to connect the destination to. (This is the old name.) diff --git a/src/connections/destinations/lumen/index.md b/src/connections/destinations/lumen/index.md index 6799a10729..b3d4d2dcde 100644 --- a/src/connections/destinations/lumen/index.md +++ b/src/connections/destinations/lumen/index.md @@ -16,7 +16,7 @@ Lumen maintains this destination. For any issues with the destination, [contact ## Getting Started -{% include content/connection-modes.md %} + 1. From the Destinations catalog page in the Segment App, click **Add Destination**. 2. Search for **Lumen** and select the **Lumen** destination. diff --git a/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/adjust-swift.md b/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/adjust-swift.md index 35076b1837..6c253b9268 100644 --- a/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/adjust-swift.md +++ b/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/adjust-swift.md @@ -10,7 +10,7 @@ strat: swift ## Getting started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Adjust" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/facebook-app-events-swift.md b/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/facebook-app-events-swift.md index 916f85e3f5..705ba8e0b3 100644 --- a/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/facebook-app-events-swift.md +++ b/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/facebook-app-events-swift.md @@ -5,7 +5,7 @@ strat: swift ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Facebook App Events" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/mixpanel-swift.md b/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/mixpanel-swift.md index 49935a8f74..9e93070b1b 100644 --- a/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/mixpanel-swift.md +++ b/src/connections/sources/catalog/libraries/mobile/apple/destination-plugins/mixpanel-swift.md @@ -8,7 +8,7 @@ Segment's Mixpanel destination plugin code is open source and available on GitHu ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment app Destinations page click on **Add Destination**. 2. Search for Mixpanel in the Destinations Catalog and confirm the Source to connect to. diff --git a/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/adjust-kotlin-android.md b/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/adjust-kotlin-android.md index 4298e1f427..937bd13b25 100644 --- a/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/adjust-kotlin-android.md +++ b/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/adjust-kotlin-android.md @@ -7,7 +7,7 @@ strat: kotlin-android ## Getting started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Adjust" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/facebook-app-events-kotlin-android.md b/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/facebook-app-events-kotlin-android.md index 0fe76bd4a2..03e80fb40f 100644 --- a/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/facebook-app-events-kotlin-android.md +++ b/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/facebook-app-events-kotlin-android.md @@ -5,7 +5,7 @@ strat: kotlin-android ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Facebook App Events" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/flurry-kotlin-android.md b/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/flurry-kotlin-android.md index 3b2fdfb7d2..369718dddd 100644 --- a/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/flurry-kotlin-android.md +++ b/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/flurry-kotlin-android.md @@ -7,7 +7,7 @@ strat: kotlin-android ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Flurry" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/mixpanel-kotlin-android.md b/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/mixpanel-kotlin-android.md index 0f1e6f6172..3a8c89d27b 100644 --- a/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/mixpanel-kotlin-android.md +++ b/src/connections/sources/catalog/libraries/mobile/kotlin-android/destination-plugins/mixpanel-kotlin-android.md @@ -9,7 +9,7 @@ Segment's Mixpanel destination plugin code is open source and available on GitHu ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment app Destinations page click on **Add Destination**. 2. Search for Mixpanel in the Destinations Catalog and confirm the Source to connect to. diff --git a/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/adjust-react-native.md b/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/adjust-react-native.md index cf8b5e01f8..6f7ce4f2c0 100644 --- a/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/adjust-react-native.md +++ b/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/adjust-react-native.md @@ -7,7 +7,7 @@ strat: react-native ## Getting started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Adjust" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/facebook-app-events-react-native.md b/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/facebook-app-events-react-native.md index 5a456d70e2..4e827556d3 100644 --- a/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/facebook-app-events-react-native.md +++ b/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/facebook-app-events-react-native.md @@ -5,7 +5,7 @@ strat: react-native ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment web app, click **Catalog**. 2. Search for "Facebook App Events" in the Catalog, select it, and choose which of your sources to connect the destination to. diff --git a/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/mixpanel-react-native.md b/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/mixpanel-react-native.md index a0f461ead4..d37883ad53 100644 --- a/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/mixpanel-react-native.md +++ b/src/connections/sources/catalog/libraries/mobile/react-native/destination-plugins/mixpanel-react-native.md @@ -9,7 +9,7 @@ Segment's Mixpanel destination plugin code is open source and available on GitHu ## Getting Started -{% include content/connection-modes.md %} + 1. From the Segment app Destinations page click on **Add Destination**. 2. Search for Mixpanel in the Destinations Catalog and confirm the Source to connect to. diff --git a/src/connections/storage/catalog/google-cloud-storage/index.md b/src/connections/storage/catalog/google-cloud-storage/index.md index 7f753c6218..f5256204eb 100644 --- a/src/connections/storage/catalog/google-cloud-storage/index.md +++ b/src/connections/storage/catalog/google-cloud-storage/index.md @@ -4,7 +4,7 @@ integration-type: destination redirect_from: '/connections/destinations/catalog/google-cloud-storage/' --- -{% include content/connection-modes.md %} + The Google Cloud Storage (GCS) destination puts the raw logs of the data Segment receives into your GCS bucket. The data is copied into your bucket at least every hour. You might see multiple files over a period of time depending on how much data is copied. From 9aa627255efcfdf3a00f61a444e382ac0cca18ce Mon Sep 17 00:00:00 2001 From: markzegarelli Date: Thu, 15 Jun 2023 15:10:05 -0700 Subject: [PATCH 3/4] delete it --- src/_includes/content/_connection-modes.md | 45 ---------------------- 1 file changed, 45 deletions(-) delete mode 100644 src/_includes/content/_connection-modes.md diff --git a/src/_includes/content/_connection-modes.md b/src/_includes/content/_connection-modes.md deleted file mode 100644 index 2b4637d05d..0000000000 --- a/src/_includes/content/_connection-modes.md +++ /dev/null @@ -1,45 +0,0 @@ - -{% assign currentSlug = page.url | split: "/" | last %} -{% assign overrideInfo = site.data.catalog.overrides.items % | where: "slug", currentSlug | first %} - - - -{% assign currentIntegration = site.data.catalog.destinations.items | where: "slug", currentSlug | first %} - - -{% if page.cmode-override %} -{% assign connectionModes = overrideInfo.connection_modes %} -{% else %} -{% assign connectionModes = currentIntegration.connection_modes %} -{% endif %} - -{% if currentIntegration.components.size > 0 %} - - - - -Before you start, make sure {{ currentIntegration.display_name }} supports the source type and connection mode you've chosen to implement. You can learn more about [connection modes here](https://segment.com/docs/connections/destinations/#connection-modes). - - - - - - - - - - - - - - - - - - - - -
    WebMobileServer
    📱 Device-mode{% if connectionModes.device.web == true %} ✅ {% else %}⬜️{% endif %}{% if connectionModes.device.mobile == true %} ✅ {% else %}⬜️{% endif %}⬜️
    ☁️ Cloud-mode{% if connectionModes.cloud.web == true %} ✅ {% else %}⬜️{% endif %}{% if connectionModes.cloud.mobile == true %} ✅ {% else %}⬜️{% endif %}{% if connectionModes.cloud.server == true %} ✅ {% else %}⬜️{% endif %}
    -{% endif %} From 22bef5220eef0209a6e33597bfc041c27bdaa96f Mon Sep 17 00:00:00 2001 From: markzegarelli Date: Thu, 15 Jun 2023 15:17:10 -0700 Subject: [PATCH 4/4] don't publish unneeded utils --- src/utils/cmode-verify.md | 1 + src/utils/cmodes-summary.md | 1 + src/utils/destination-betas.md | 1 + src/utils/env.md | 1 + src/utils/find-mismatches.md | 1 + src/utils/grid.md | 1 + src/utils/region-compare.md | 1 + src/utils/regional-table.md | 1 + src/utils/regional.md | 1 + src/utils/vale-test.md | 5 +---- 10 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/utils/cmode-verify.md b/src/utils/cmode-verify.md index fbd8424585..f045e54f3b 100644 --- a/src/utils/cmode-verify.md +++ b/src/utils/cmode-verify.md @@ -1,5 +1,6 @@ --- title: Verify Destination Connection Modes +published: false hidden: true tests: - test-1: diff --git a/src/utils/cmodes-summary.md b/src/utils/cmodes-summary.md index b3b5a913c6..fc41d703f0 100644 --- a/src/utils/cmodes-summary.md +++ b/src/utils/cmodes-summary.md @@ -1,6 +1,7 @@ --- title: Connection modes summary tables hidden: true +published: false --- This page is to help troubleshoot and break down each connection modes situation into plain English that we can use to provide a summary. So far we have 10, and two are weird singletons. diff --git a/src/utils/destination-betas.md b/src/utils/destination-betas.md index f19998a00d..f73bacf3f0 100644 --- a/src/utils/destination-betas.md +++ b/src/utils/destination-betas.md @@ -1,6 +1,7 @@ --- title: Destination Beta finder hidden: true +published: false --- diff --git a/src/utils/env.md b/src/utils/env.md index b578931b9c..298072e939 100644 --- a/src/utils/env.md +++ b/src/utils/env.md @@ -1,5 +1,6 @@ --- title: Environment Variable Test hidden: true +published: false --- Test \ No newline at end of file diff --git a/src/utils/find-mismatches.md b/src/utils/find-mismatches.md index 49a9d4914d..5b6c171366 100644 --- a/src/utils/find-mismatches.md +++ b/src/utils/find-mismatches.md @@ -1,6 +1,7 @@ --- title: Mismatch finder hidden: true +published: false --- diff --git a/src/utils/grid.md b/src/utils/grid.md index 63cb507540..86bda5944d 100644 --- a/src/utils/grid.md +++ b/src/utils/grid.md @@ -1,6 +1,7 @@ --- title: test tier table hidden: true +published: false --- diff --git a/src/utils/region-compare.md b/src/utils/region-compare.md index 5eef058910..b3fbcf6cef 100644 --- a/src/utils/region-compare.md +++ b/src/utils/region-compare.md @@ -1,6 +1,7 @@ --- title: Manual vs Automatic Region Metadata Comparison hidden: true +published: false ---