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.
Categories: Analytics
Type: mixpanel/v1
Connections
Version: 1
Basic Auth
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
username | Username | STRING | true |
Actions
Track Events
Name: trackEvents
Send batches of events from your servers to Mixpanel.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
events | Events | ARRAY 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
Name | Type | Description |
---|---|---|
code | INTEGER | |
num_records_imported | INTEGER | |
status | STRING |
Output Example
{
"code" : 1,
"num_records_imported" : 1,
"status" : ""
}