Skip to content

Commit 4e79c11

Browse files
authored
Merge pull request #5346 from upollo/feature/upollo-source
Feature/upollo source
2 parents ca83be5 + 22e7a32 commit 4e79c11

File tree

1 file changed

+83
-3
lines changed
  • src/connections/sources/catalog/cloud-apps/upollo

1 file changed

+83
-3
lines changed
Lines changed: 83 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,84 @@
11
---
2-
title: 'Upollo Source'
3-
hidden: true
4-
---
2+
title: Upollo Source
3+
id: 9TYqEh3nMe
4+
beta: true
5+
---
6+
7+
[Upollo](https://upollo.ai?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank"} gives unique and actionable insights that lead to conversion, retention, and expansion.
8+
9+
This source is maintained by Upollo. For any issues with the source, [contact Upollo's Support team](mailto:[email protected]).
10+
11+
> info ""
12+
> The Upollo Source is currently in beta, which means that Upollo still actively developing the source. If you are interested in joining the beta program or have any feedback to help improve the Upollo Source and its documentation, [let the Upollo team know](mailto:[email protected]).
13+
14+
## Getting started
15+
16+
1. From your workspace's [Sources catalog page](https://app.segment.com/goto-my-workspace/sources/catalog){:target="_blank”} click **Add Source**.
17+
2. Search for "Upollo" in the Sources Catalog, select Upollo, and click **Add Source**.
18+
3. On the next screen, give the Source a nickname and configure any other settings.
19+
20+
- The nickname is used as a label in the Segment app, and Segment creates a related schema name in your warehouse. The nickname can be anything, but Segment recommends using something that reflects the source itself and distinguishes amongst your environments (for example, Upollo_Prod, Upollo_Staging, Upollo_Dev).
21+
22+
4. Click **Add Source** to save your settings.
23+
5. Copy the Write key from the Segment UI.
24+
6. Log in to your Upollo account and navigate to [Connections](https://upollo.ai/app/settings/connections){:target="_blank”}. Connect the Segment Source and paste the Write key to connect.
25+
26+
27+
## Stream
28+
29+
Upollo uses server-side `identify` calls to send information about users. The table below describes the fields.
30+
Upollo uses a stream Source component to send Segment event data. It uses a server-side `identify` method to send data to Segment. These events are then available in any destination that accepts server-side events, and available in a schema in your data warehouse, so you can query using SQL.
31+
32+
The default behavior is for Upollo to pass the `userId` associated with the email recipient as the `userId`. There are cases in which Upollo does not have an associated userId, in which case the email address is passed in as the `anonymousId`.
33+
34+
## Event properties
35+
36+
The table below lists the properties included in the events. Learn more about different properties in the Upollo [documentation](https://upollo.ai/docs/reference?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank”}
37+
38+
| Property Name | Description |
39+
| --------------------------------------- | --------------------------------------------------------- |
40+
| `traits.predictions` | An array of predictions about the user |
41+
| `traits.predictions[*].name` | The name of the prediction |
42+
| `traits.predictions[*].score` | A percentage of how likely the prediction is to come true |
43+
| `traits.predictions[*].timestamp` | When the prediction was calculated |
44+
| `traits.flags` | An array of the users flags |
45+
| `traits.flags[*].type` | The type of this flag |
46+
| `traits.flags[*].first_flagged` | When this flag was first triggered |
47+
| `traits.flags[*].most_recently_flagged` | When this flag was last triggered |
48+
49+
For example
50+
```json
51+
{
52+
"type": "identify",
53+
"userId": "97980cfea0067",
54+
"traits": {
55+
"email": "[email protected]",
56+
"predictions": [{
57+
"name": "conversion",
58+
"score": 0.98,
59+
"timestamp": "2023-09-05T04:30:11Z"
60+
}, {
61+
"name": "expansion",
62+
"score": 0.78,
63+
"timestamp": "2023-09-05T04:30:11Z"
64+
}, {
65+
"name": "churn",
66+
"score": 0.12,
67+
"timestamp": "2023-09-05T04:30:11Z"
68+
}],
69+
"flags": [{
70+
"type": "MULTIPLE_ACCOUNTS",
71+
"first_flagged": "2023-09-05T04:30:11Z",
72+
"most_recently_flagged": "2023-09-05T04:30:11Z"
73+
}]
74+
}
75+
}
76+
```
77+
78+
## Adding Destinations
79+
80+
Now that your Source is set up, you can connect it with Destinations.
81+
82+
Log into your downstream tools and check to see that your events appear as expected, and that they contain all of the properties you expect. If your events and properties don’t appear, check the [Event Delivery](/docs/connections/event-delivery/) tool, and refer to the Destination docs for each tool for troubleshooting.
83+
84+
If there are any issues with how the events are arriving to Segment, [contact the Upollo support team](mailto:[email protected]).

0 commit comments

Comments
 (0)