|
| 1 | +--- |
| 2 | +title: Humanic AI Destination |
| 3 | +id: 64b0e177091331e4a2a00c83 |
| 4 | +___ |
| 5 | + |
| 6 | +[Humanic AI](https://humanic.ai/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank"} is revolutionizing the CRM space to make it easier than ever for growing companies to maximize revenue from their existing users. Humanic is the industry's first PLG CRM for today’s modern revenue teams. With support from top industry veterans at DoorDash, Notion, Miro, Canvas, MailChimp and more - there's no better time explore what Humanic can offer your business. |
| 7 | + |
| 8 | +Managing upwards of 1000+ active users can be an overwhelming task, and many CRMs struggle to keep up with the influx. If you need a reliable system that allows for user sorting based on payment or user activity, it's time to consider more robust solutions than traditional customer relationship management software. Read on for details on how the Humanic PLG CRM can help unlock revenue from your existing user base. To Sign up and explore right away [click here](https://humanic.ai/signup?utm_source=segmentio&utm_medium=docs&utm_campaign=partners). |
| 9 | + |
| 10 | +This destination is maintained by Humanic. For any issues with the destination, [contact the Humanic Support team](mailto:[email protected]). |
| 11 | + |
| 12 | +## Getting Started |
| 13 | + |
| 14 | +1. Navigate to **Connections > Catalog** and select the **Destinations** tab in the catalog. |
| 15 | +2. Search for *Humanic AI* in the catalog and select the destination. |
| 16 | +3. Choose which source should send data to the *Humanic AI* destination. |
| 17 | +4. Go to the [Humanic dashboard](https://dashboard.humanic.ai/dashboard/profile/){:target="_blank"} and select the **API Keys** tab. Generate an API key and copy it. |
| 18 | +5. Enter the API Key in the Humanic AI destination settings in Segment. |
| 19 | + |
| 20 | + |
| 21 | +## Supported methods |
| 22 | + |
| 23 | +Humanic AI supports the following methods as specified in the [Segment Spec](/docs/connections/spec). |
| 24 | + |
| 25 | +### Page |
| 26 | + |
| 27 | +Send [Page](/docs/connections/spec/page) calls to record which web pages users visited. For example: |
| 28 | + |
| 29 | +```js |
| 30 | +analytics.page("Pricing", { |
| 31 | + title: "Segment Pricing", |
| 32 | + url: "https://segment.com/pricing", |
| 33 | + path: "/pricing", |
| 34 | + referrer: "https://segment.com/warehouses", |
| 35 | +}); |
| 36 | +``` |
| 37 | + |
| 38 | +Segment sends Page calls to Humanic AI as a `pageview`. |
| 39 | + |
| 40 | +### Screen |
| 41 | + |
| 42 | +Send [Screen](/docs/connections/spec/screen) calls to record which mobile app screens users viewed. For example: |
| 43 | + |
| 44 | +```obj-c |
| 45 | +[[SEGAnalytics sharedAnalytics] screen:@"Home" |
| 46 | + properties:@{ @"Feed Type": @"private" }]; |
| 47 | +``` |
| 48 | + |
| 49 | +Segment sends Screen calls to Humanic AI as a `screenview`. |
| 50 | + |
| 51 | +### Identify |
| 52 | + |
| 53 | +Send [Identify](/docs/connections/spec/identify) calls to create new users or update existing users with new values. For example: |
| 54 | + |
| 55 | +```js |
| 56 | +analytics.identify('userId123', { |
| 57 | + |
| 58 | +}); |
| 59 | +``` |
| 60 | + |
| 61 | +Segment sends Identify calls to Humanic AI as an `identify` event. |
| 62 | + |
| 63 | +### Track |
| 64 | + |
| 65 | +Send [Track](/docs/connections/spec/track) calls to record user behavior in your app. For example: |
| 66 | + |
| 67 | +```js |
| 68 | +analytics.track('Login Button Clicked'); |
| 69 | +``` |
| 70 | + |
| 71 | +Segment sends Track calls to Humanic AI as a `track` event. |
| 72 | + |
0 commit comments