|
1 | 1 | ---
|
2 |
| -title: 'Upollo Source' |
3 |
| -hidden: true |
4 |
| ---- |
| 2 | +title: Upollo Source |
| 3 | +--- |
| 4 | + |
| 5 | +[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. |
| 6 | + |
| 7 | +This source is maintained by Upollo. For any issues with the source, [contact their Support team ](mailto:[email protected]). |
| 8 | + |
| 9 | +_**NOTE: ** The Upollo Source is currently in beta, which means that they are still actively developing the source. If you are interested in joining their beta program or have any feedback to help improve the Upollo Source and its documentation, [let the Upollo team know ](mailto:[email protected]). _ |
| 10 | + |
| 11 | +## Getting started |
| 12 | + |
| 13 | +1. From your workspace's [Sources catalog page](https://app.segment.com/goto-my-workspace/sources/catalog){:target="_blank”} click **Add Source**. |
| 14 | +2. Search for "Upollo" in the Sources Catalog, select Upollo, and click **Add Source**. |
| 15 | +3. On the next screen, give the Source a nickname configure any other settings. |
| 16 | + |
| 17 | + - 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 we recommend using something that reflects the source itself and distinguishes amongst your environments (eg. SourceName_Prod, SourceName_Staging, SourceName_Dev). |
| 18 | + |
| 19 | +4. Click **Add Source** to save your settings. |
| 20 | +5. Copy the Write key from the Segment UI. |
| 21 | +6. Log in to your Upollo account - navigate to [Connections](https://upollo.ai/app/settings/connections) > Connect Segment Source and paste the key to connect. |
| 22 | + |
| 23 | + |
| 24 | +## Stream |
| 25 | + |
| 26 | +Upollo uses server-side `identify` calls to send information about users. The table below describes the fields. |
| 27 | +Upollo uses our 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. |
| 28 | + |
| 29 | +## Event Properties |
| 30 | + |
| 31 | +The table below list the properties included in the events. You can learn more about the different types in the Upollo [documentation](https://upollo.ai/docs/reference?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) |
| 32 | + |
| 33 | +| Property Name | Description | |
| 34 | +| --------------------------------------- | --------------------------------------------------------- | |
| 35 | +| `traits.preductions` | An array of predictions about the user | |
| 36 | +| `traits.preductions[*].name` | The name of the prediction | |
| 37 | +| `traits.preductions[*].score` | A percentage of how likely the prediction is to come true | |
| 38 | +| `traits.preductions[*].timestamp` | When the prediction was calculated | |
| 39 | +| `traits.flags` | An array of the users flags | |
| 40 | +| `traits.flags[*].type` | The type of this flag | |
| 41 | +| `traits.flags[*].first_flagged` | When this flag was first triggered | |
| 42 | +| `traits.flags[*].most_recently_flagged` | When this flag was last triggered | |
| 43 | + |
| 44 | +For example |
| 45 | +```json |
| 46 | +{ |
| 47 | + "type": "identify", |
| 48 | + "userId": "97980cfea0067", |
| 49 | + "traits": { |
| 50 | + |
| 51 | + "predictions": [{ |
| 52 | + "name": "conversion", |
| 53 | + "score": 0.98, |
| 54 | + "timestamp": "2023-09-05T04:30:11Z" |
| 55 | + }, { |
| 56 | + "name": "expansion", |
| 57 | + "score": 0.78, |
| 58 | + "timestamp": "2023-09-05T04:30:11Z" |
| 59 | + }, { |
| 60 | + "name": "churn", |
| 61 | + "score": 0.12, |
| 62 | + "timestamp": "2023-09-05T04:30:11Z" |
| 63 | + }], |
| 64 | + "flags": [{ |
| 65 | + "type": "MULTIPLE_ACCOUNTS", |
| 66 | + "first_flagged": "2023-09-05T04:30:11Z", |
| 67 | + "most_recently_flagged": "2023-09-05T04:30:11Z" |
| 68 | + }] |
| 69 | + } |
| 70 | +} |
| 71 | +``` |
| 72 | + |
| 73 | +## Adding Destinations |
| 74 | + |
| 75 | +Now that your Source is set up, you can connect it with Destinations. |
| 76 | + |
| 77 | +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. |
| 78 | + |
| 79 | +If there are any issues with how the events are arriving to Segment, [contact the Upollo support team ](mailto:[email protected]). |
0 commit comments