Kubit

Step-by-step guide to send your event data from RudderStack to Kubit.

Kubit is a self-service product analytics platform with no-code integration that facilitates efficient data discovery. With Kubit, you can better understand your users' behavior and use the insights to drive customer retention and your product growth.

Kubit can also consume data from your cloud data warehouse directly, so you don't have to configure it as a destination in RudderStack separately.

For more information, check out the Kubit documentation.

Supported Calls

Kubit currently supports only identify and track calls.

Identify

The identify call lets you capture the actions of a visiting user. It also lets you record any traits associated with them such as their name, email address, etc.

For more information on the identify call, refer to the HTTP API Specification guide.

A sample identify call is as shown:

rudderanalytics.identify("userId", {
  name: "Name",
  email: "name@xyz.com",
})

Track

The track call allows you to capture any user action along with the properties associated with that action.

For more information on the track call, refer to the HTTP API Specification guide.

A sample track call is as shown:

rudderanalytics.track("Order Completed", {
  orderId: "1234567",
  price: "567",
  currency: "USD",
})

Contact Us

If you come across any issues while using the Kubit integration, please feel free to contact us or start a conversation in our Slack community. We will be happy to help you.

Last updated