Skip to content

Commit b36428b

Browse files
pauljaeinyooPaul Yoosanscontextsanscontext
authored
Digioh documentation (#1511)
* Digioh documentation * Update src/connections/destinations/catalog/digioh/index.md Co-authored-by: LRubin <[email protected]> * Update src/connections/destinations/catalog/digioh/index.md Co-authored-by: LRubin <[email protected]> * Update src/connections/destinations/catalog/digioh/index.md Co-authored-by: LRubin <[email protected]> * changes to warning boxes * Update src/connections/destinations/catalog/digioh/index.md * Update src/connections/destinations/catalog/digioh/index.md * track call warning * rerun catalog (left all parts so we have a "still true date") Co-authored-by: Paul Yoo <[email protected]> Co-authored-by: LRubin <[email protected]> Co-authored-by: sanscontext <[email protected]>
1 parent bb17533 commit b36428b

File tree

5 files changed

+50
-4
lines changed

5 files changed

+50
-4
lines changed

src/_data/catalog/destination_categories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PLATFORM API. DO NOT EDIT
2-
# destination categories last updated 2021-04-01
2+
# destination categories last updated 2021-04-20
33
items:
44
- display_name: Email Marketing
55
slug: email-marketing

src/_data/catalog/destinations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PLATFORM API. DO NOT EDIT
2-
# destination data last updated 2021-04-15
2+
# destination data last updated 2021-04-20
33
items:
44
- display_name: ActiveCampaign
55
slug: activecampaign

src/_data/catalog/source_categories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PLATFORM API. DO NOT EDIT
2-
# source cateogries last updated 2021-04-01
2+
# source cateogries last updated 2021-04-20
33
items:
44
- display_name: Server
55
slug: server

src/_data/catalog/sources.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PLATFORM API. DO NOT EDIT
2-
# sources last updated 2021-04-01
2+
# sources last updated 2021-04-20
33
items:
44
- display_name: .NET
55
slug: net
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: Digioh Destination
3+
rewrite: true
4+
---
5+
[Digioh](https://www.digioh.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) allows you to grow your email lists with personalized forms, landing pages, paywalls and email preference centers. Digioh makes it easy with a drag and drop builder and built-in integrations to your favorite marketing tools.
6+
7+
This destination is maintained by Digioh. For any issues with the destination, [contact the Digioh Support team](mailto:[email protected]).
8+
9+
## Getting Started
10+
11+
{% include content/connection-modes.md %}
12+
13+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
14+
2. Search for "Digioh" in the Destinations Catalog, and select the Digioh destination.
15+
3. Choose which Source should send data to the Digioh destination.
16+
4. Go to the [Digioh dashboard](https://account.digioh.com/HQ/Installation), find and copy the "API key" parameter in your `<script>` tag.
17+
`<script async type='text/javascript' src='https://www.lightboxcdn.com/vendor/API_KEY/lightbox_inline.js'></script>`
18+
5. Enter the "API Key" and your Digioh account email in the Digioh destination settings in Segment.
19+
20+
## Identify
21+
22+
If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](https://segment.com/docs/connections/spec/identify/) to learn about what it does. An example call would look like:
23+
24+
```js
25+
analytics.identify('userId123', {
26+
27+
});
28+
```
29+
30+
Segment sends Identify calls to Digioh as an `identify` event.
31+
32+
> warning ""
33+
> The `email` field is required. Identify calls without an `email` fail with a `400` code.
34+
35+
## Track
36+
37+
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](https://segment.com/docs/connections/spec/track/) to learn about what it does. An example call would look like:
38+
39+
```js
40+
analytics.track('Login Button Clicked')
41+
```
42+
43+
Segment sends Track calls to Digioh as a `track` event.
44+
45+
> warning ""
46+
> Be sure you send an Identify call for any user who will trigger Track calls. If Digioh receives a Track call for an unknown `userId`, the call is dropped.

0 commit comments

Comments
 (0)