Skip to content

Commit b2ee384

Browse files
charholtmarkzegarelli
andauthored
Natero docs update (#2315)
* Changed Natero docs from hidden * Update Natero Docs * fix URLs * catalog update Co-authored-by: markzegarelli <[email protected]>
1 parent 33d2fa3 commit b2ee384

File tree

5 files changed

+71
-9
lines changed

5 files changed

+71
-9
lines changed

src/_data/catalog/destination_categories.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# AUTOGENERATED FROM PUBLIC API. DO NOT EDIT
2-
# destination categories last updated 2022-01-07
2+
3+
# destination categories last updated 2022-01-10
4+
35
items:
46
- display_name: A/B Testing
57
slug: a-b-testing

src/_data/catalog/destinations.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# AUTOGENERATED FROM PUBLIC API. DO NOT EDIT
2-
# destination data last updated 2022-01-07
2+
# destination data last updated 2022-01-10
3+
34
items:
45
- destination_id: 60b5d0a01f3726b85dc05aab
56
display_name: 2mee
@@ -4046,9 +4047,9 @@ items:
40464047
mark:
40474048
url: https://cdn.filepicker.io/api/file/lDwvVrfTG6yHeZnaV2QX
40484049
methods:
4049-
track: false
4050+
track: true
40504051
identify: true
4051-
group: false
4052+
group: true
40524053
alias: false
40534054
page: true
40544055
platforms:
@@ -22610,7 +22611,7 @@ items:
2261022611
display_name: Natero
2261122612
name: Natero
2261222613
slug: natero
22613-
hidden: true
22614+
hidden: false
2261422615
url: connections/destinations/catalog/natero
2261522616
previous_names:
2261622617
- Natero

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 PUBLIC API. DO NOT EDIT
2-
# source cateogries last updated 2022-01-07
2+
# source cateogries last updated 2022-01-10
33
items:
44
- display_name: A/B Testing
55
slug: a-b-testing

src/_data/catalog/sources.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# AUTOGENERATED FROM PUBLIC API. DO NOT EDIT
2-
# sources last updated 2022-01-07
2+
# sources last updated 2022-01-10
3+
34
items:
45
- id: 8HWbgPTt3k
56
display_name: .NET
Lines changed: 60 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,62 @@
11
---
22
title: 'Natero Destination'
3-
hidden: true
4-
---
3+
hidden: false
4+
---
5+
6+
[Natero, also known as Freshdesk Customer Success](https://urldefense.com/v3/__https://freshsuccess.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners__;!!NCc8flgU!JByOjJz8hK4AJQxY6Rqzqe0ZcUCB3UJBtbn1bQrxTh6SxjM-uHPST7abmfD3cRc$){:target="_blank"} helps customer success managers better understand their customers by integrating all of your customer data in one place and leveraging it to help with prioritization and context. By reaching out to customers in the right way at the right time, CSMs can reduce churn, increase upsell and create advocates for your business. For more details on how the segment integration for Natero works, visit the [Natero developer site](https://urldefense.com/v3/__https://developer.freshsuccess.com/api/segmentapi.html__;!!NCc8flgU!JByOjJz8hK4AJQxY6Rqzqe0ZcUCB3UJBtbn1bQrxTh6SxjM-uHPST7abnKQ8GJ4$){:target="_blank"}.
7+
8+
This destination is maintained by Freshworks. For any issues with the destination, [contact the Natero Support team](mailto:[email protected]).
9+
10+
## Getting Started
11+
12+
{% include content/connection-modes.md %}
13+
14+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
15+
2. Search for "Natero" in the Destinations Catalog, and select the "Natero" destination.
16+
3. Choose which Source should send data to the "Natero" destination.
17+
4. Within Natero, navigate to IT Administration from the cogwheel in the left navigation bar.
18+
5. Go to the tab labeled "Source Overview" and retrieve the "Event API / Send key" and the "Event auth key".
19+
6. Enter those keys in the "Natero" destination settings in Segment.
20+
21+
22+
## Supported methods
23+
24+
Natero supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
25+
26+
### Group
27+
28+
Send [Group](/docs/connections/spec/group) calls to provide updated metadata about the account that a user is associated with. For example:
29+
30+
```js
31+
analytics.group('accountId123', {
32+
name: 'Example Inc.',
33+
description: 'Description of Example Inc.'
34+
});
35+
```
36+
37+
Segment sends Group calls to Natero as a `group` event.
38+
39+
40+
### Identify
41+
42+
Send [Identify](/docs/connections/spec/identify) calls to update detail about a user. For example:
43+
44+
```js
45+
analytics.identify('userId123', {
46+
47+
});
48+
```
49+
50+
Segment sends Identify calls to Natero as an `identify` event.
51+
52+
53+
### Track
54+
55+
Send [Track](/docs/connections/spec/track) calls to capture user actions within your application as features within Natero. For example:
56+
57+
```js
58+
analytics.track('Login Button Clicked')
59+
```
60+
61+
Segment sends Track calls to Natero as a `track` events.
62+

0 commit comments

Comments
 (0)