ByteChef LogoByteChef
Components

Mixpanel

Mixpanel is a product analytics tool that helps you track user interactions and behaviors in your app or website to make data-driven decisions.

Mixpanel is a product analytics tool that helps you track user interactions and behaviors in your app or website to make data-driven decisions.

Categories: Analytics

Type: mixpanel/v1


Connections

Version: 1

Basic Auth

Properties

NameLabelTypeDescriptionRequired
usernameUsernameSTRINGtrue

Actions

Track Events

Name: trackEvents

Send batches of events from your servers to Mixpanel.

Properties

NameLabelTypeDescriptionRequired
eventsEventsARRAY
Items [{STRING(event), DATE_TIME(time), STRING(distinct_id), STRING($insert_id)}]
A list of events to be sent to Mixpanel.true

Example JSON Structure

{
  "label" : "Track Events",
  "name" : "trackEvents",
  "parameters" : {
    "events" : [ {
      "event" : "",
      "time" : "2021-01-01T00:00:00",
      "distinct_id" : "",
      "$insert_id" : ""
    } ]
  },
  "type" : "mixpanel/v1/trackEvents"
}

Output

Type: OBJECT

Properties

NameTypeDescription
codeINTEGER
num_records_importedINTEGER
statusSTRING

Output Example

{
  "code" : 1,
  "num_records_imported" : 1,
  "status" : ""
}

On this page