Thanks to visit codestin.com
Credit goes to github.com

Skip to content

added humanic.ai doc #5153

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions src/connections/destinations/catalog/humanic-ai/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
---
title: Humanic AI Destination
id: 64b0e177091331e4a2a00c83
___

[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.

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).

This destination is maintained by Humanic. For any issues with the destination, [contact the Humanic Support team](mailto:[email protected]).

## Getting Started

1. Navigate to **Connections > Catalog** and select the **Destinations** tab in the catalog.
2. Search for *Humanic AI* in the catalog and select the destination.
3. Choose which source should send data to the *Humanic AI* destination.
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.
5. Enter the API Key in the Humanic AI destination settings in Segment.


## Supported methods

Humanic AI supports the following methods as specified in the [Segment Spec](/docs/connections/spec).

### Page

Send [Page](/docs/connections/spec/page) calls to record which web pages users visited. For example:

```js
analytics.page("Pricing", {
title: "Segment Pricing",
url: "https://segment.com/pricing",
path: "/pricing",
referrer: "https://segment.com/warehouses",
});
```

Segment sends Page calls to Humanic AI as a `pageview`.

### Screen

Send [Screen](/docs/connections/spec/screen) calls to record which mobile app screens users viewed. For example:

```obj-c
[[SEGAnalytics sharedAnalytics] screen:@"Home"
properties:@{ @"Feed Type": @"private" }];
```

Segment sends Screen calls to Humanic AI as a `screenview`.

### Identify

Send [Identify](/docs/connections/spec/identify) calls to create new users or update existing users with new values. For example:

```js
analytics.identify('userId123', {
email: '[email protected]',
});
```

Segment sends Identify calls to Humanic AI as an `identify` event.

### Track

Send [Track](/docs/connections/spec/track) calls to record user behavior in your app. For example:

```js
analytics.track('Login Button Clicked');
```

Segment sends Track calls to Humanic AI as a `track` event.