Mxpanel.track_many

You're seeing just the function track_many, go back to Mxpanel module for more information.
Link to this function

track_many(client, events)

View Source

Specs

track_many(Mxpanel.Client.t(), [Mxpanel.Event.t()]) :: :ok | {:error, term()}

Import a batch of events into Mixpanel.

client = %Mxpanel.Client{token: "mixpanel project token"}
event_1 = Mxpanel.Event.new("signup", "123")
event_2 = Mxpanel.Event.new("signup", "456")

Mxpanel.track(client, [event_1, event_2])