Open
Description
I'm trying to update a person's profile with their IP address but find that MixPanel does not recognize the update unless another property is included. This behavior does not happen when using the JavaScript library.
For example, the following has no effect on the user's profile:
_mixPanelClient.PeopleSet(userName, new Dictionary<string, object>
{
{ MixpanelProperty.Ip, "some.ip.address" }
});
Whereas the following WILL update the user's location MixPanel (and create a new foo = bar property)
_mixPanelClient.PeopleSet(userName, new Dictionary<string, object>
{
{ MixpanelProperty.Ip, "some.ip.address" },
{ "foo", "bar"}
});
Whereas with the Javascript library, running mixpanel.people.set("ip", "some.ip.address") will update the user's profile accordingly.
Metadata
Metadata
Assignees
Labels
No labels