-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6811 from segmentio/develop
Release 24.28.2
- Loading branch information
Showing
15 changed files
with
327 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,3 +92,9 @@ If you're encountering rate limiting issues, consider enabling batching for the | |
### Can I send Engage Audiences to a pre-created Klaviyo List? | ||
|
||
No. Engage audiences are designed to initiate the creation of new lists in Klaviyo when you use the "Add Profile to List - Engage" mapping. You cannot link Engage lists to existing Klaviyo lists and cannot edit the List ID for Engage audiences. | ||
|
||
### How can I unsuppress a profile when adding it to a list? | ||
|
||
When adding a user to a list, our action make use of the [Bulk Profile Import](https://developers.klaviyo.com/en/reference/spawn_bulk_profile_import_job){target="_blank"} endpoint (when batching is enabled), and the [Add Profile To List](https://developers.klaviyo.com/en/reference/create_list_relationships){target="_blank"} endpoint for non-batched requests. Both of which will not update a users suppression status if they were previously suppressed. | ||
|
||
To ensure a suppressed profile gets unsuppressed, you can use the "Subscribe Profile" action. When a profile is subscribed in Klaviyo, it automatically unsuppresses any previously suppressed user. You can combine this action with other actions to achieve your goal. If this solution does not fully address your use case, please contact us at [email protected] so we can consider your specific requirements. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
title: Convertly Destination | ||
id: 65e8b496eec9c40dbccbf749 | ||
beta: true | ||
--- | ||
|
||
[Convertly](https://www.tryconvertly.com){:target="\_blank”} lets you run AI on your product analytics. Create and generate charts and analyze data in minutes. | ||
|
||
This destination is maintained by Convertly. For any issues with the destination, contact the [Convertly support team](mailto:[email protected]). | ||
|
||
## Getting started | ||
|
||
1. From the Destination catalog page in the Segment app, search for Convertly. | ||
2. Select and click **Add Destination**. | ||
3. Select an existing Source to connect to. | ||
4. In Convertly, navigate to your [API Keys](https://www.app.tryconvertly.com/account/apikeys){:target="\_blank"} page. | ||
5. Copy your API key. | ||
6. Return to Segment and enter the API key in the destination settings for your Convertly destination. | ||
|
||
## Supported methods | ||
|
||
Convertly supports the following methods, as specified in the [Segment Spec](/docs/connections/spec). | ||
|
||
### Page | ||
|
||
Send Page calls to Convertly, for example: | ||
|
||
```js | ||
analytics.page(); | ||
``` | ||
|
||
Page calls are used in Convertly to analyze drop off and build user funnels. | ||
|
||
### Identify | ||
|
||
Send Identify calls to Convertly, for example: | ||
|
||
```js | ||
analytics.identify("userId123", { | ||
email: "[email protected]" | ||
}); | ||
``` | ||
|
||
Identify calls are used in Convertly to recognize users with a unique ID. This allows Convertly to generate charts and tables, providing insights into how users interact with data—all in natural language. | ||
|
||
### Track | ||
|
||
Send Track calls to Convertly, for example: | ||
|
||
```js | ||
analytics.track("Login Button Clicked"); | ||
``` | ||
|
||
Track calls, along with event names, are used in Convertly to track user events. Once a track event is sent, Convertly can query the data using natural language. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.