At Stormly we focus on making it as easy as possible for you to integrate your data. With the click of a button you can start sending your data from Segment to Stormly.
Note: Tracked data becomes available in Stormly within seconds usually, but new projects become "active" only once at least 50 unique users are tracked.
Stormly supports nested properties and traits, except for nested arrays. In the example below the "products" property will be ignored:
analytics.track('View Webshop Items', {
cartId: "cart-12345",
products: [
{
productId: "1",
price: 99.0
},
{
productId: "1",
price: 99.0
}
]
});
If you aren't familiar with the Segment Spec, take a look at the Page method documentation to learn about what it does.
An example call would look like:
analytics.page()
Segment sends Page calls to Stormly as a pageview
.
If you aren't familiar with the Segment Spec, take a look at the Screen method documentation to learn about what it does.
An example call would look like:
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
Segment sends Screen calls to Stormly as a screen
.
If you aren't familiar with the Segment Spec, take a look at the Identify method documentation to learn about what it does.
An example call would look like:
analytics.identify('userId123', {
email: 'john.doe@example.com'
});
Segment sends Identify calls to Stormly as an identify
event.
If you aren't familiar with the Segment Spec, take a look at the Track method documentation to learn about what it does.
An example call would look like:
analytics.track('Login Button Clicked')
Segment sends Track calls to Stormly as a event
.