|
| 1 | +--- |
| 2 | +title: Worthy Destination |
| 3 | +rewrite: true |
| 4 | +--- |
| 5 | + |
| 6 | +[Worthy.ai](https://worthy.ai) helps advertisers improve their marketing efficiency through using predictive analytics and signal testing. |
| 7 | + |
| 8 | +[Worthy.ai](https://worthy.ai) maintains this documentation. For any issues with the destination, [contact Worthy support](mailto:[email protected]). |
| 9 | + |
| 10 | +## Getting started |
| 11 | + |
| 12 | +{% include content/connection-modes.md %} |
| 13 | + |
| 14 | +1. From the Destinations catalog page in your Segment Workspace, click **Add Destination**. |
| 15 | +2. Search for "Worthy" in the Destinations Catalog, and select the **Worthy** destination. |
| 16 | +3. Choose which Source should send data to the "Worthy" destination. |
| 17 | +4. [Contact Worthy support](mailto:[email protected]) to get an API key. |
| 18 | +5. Enter the "API Key" in the "Worthy" destination settings in your Segment Workspace. |
| 19 | + |
| 20 | +## Methods |
| 21 | + |
| 22 | +Worthy supports all Segment methods: `Page`, `Screen`, `Identify`, `Track`, `Alias`, and `Group`. |
| 23 | + |
| 24 | +### Page |
| 25 | + |
| 26 | +If you aren't familiar with the Segment Spec, take a look at the [Page method documentation](/docs/connections/spec/page/) to learn about what it does. An example call would look like: |
| 27 | + |
| 28 | +```js |
| 29 | +analytics.page(); |
| 30 | +``` |
| 31 | + |
| 32 | +Segment sends Page calls to Worthy as a `pageview`. |
| 33 | + |
| 34 | +### Screen |
| 35 | + |
| 36 | +If you aren't familiar with the Segment Spec, take a look at the [Screen method documentation](/docs/connections/spec/screen/) to learn about what it does. An example call would look like: |
| 37 | + |
| 38 | +```obj-c |
| 39 | +[[SEGAnalytics sharedAnalytics] screen:@"Home"]; |
| 40 | +``` |
| 41 | + |
| 42 | +Segment sends Screen calls to Worthy as a `screenview`. |
| 43 | + |
| 44 | +### Identify |
| 45 | + |
| 46 | +If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](/docs/connections/spec/identify/) to learn about what it does. An example call would look like: |
| 47 | + |
| 48 | +```js |
| 49 | +analytics.identify("userId123", { |
| 50 | + |
| 51 | +}); |
| 52 | +``` |
| 53 | + |
| 54 | +Segment sends Identify calls to Worthy as an `identify` event. |
| 55 | + |
| 56 | +### Track |
| 57 | + |
| 58 | +If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](/docs/connections/spec/track/) to learn about what it does. An example call would look like: |
| 59 | + |
| 60 | +```js |
| 61 | +analytics.track("Login Button Clicked"); |
| 62 | +``` |
| 63 | + |
| 64 | +Segment sends Track calls to Worthy as a `track` event. |
| 65 | + |
| 66 | +### Group |
| 67 | + |
| 68 | +If you aren't familiar with the Segment Spec, take a look at the [Group method documentation](/docs/connections/spec/group/) to learn about what it does. An example call would look like: |
| 69 | + |
| 70 | +```js |
| 71 | +analytics.group("0e8c78ea9d97a7b8185e8632"); |
| 72 | +``` |
| 73 | + |
| 74 | +Segment sends Group calls to Worthy as a `group` event. |
| 75 | + |
| 76 | +### Alias |
| 77 | + |
| 78 | +If you aren't familiar with the Segment Spec, take a look at the [Alias method documentation](/docs/connections/spec/alias/) to learn about what it does. An example call would look like: |
| 79 | + |
| 80 | +```js |
| 81 | +analytics.alias("507f191e81"); |
| 82 | +``` |
| 83 | + |
| 84 | +Segment sends Alias calls to Worthy as a `alias` event. |
| 85 | + |
| 86 | +## Next Steps |
| 87 | + |
| 88 | +When you complete the integration, [contact Worthy support](mailto:[email protected]) to validate the integration. |
0 commit comments