Skip to content

Instantly share code, notes, and snippets.

@sbward
Created July 22, 2014 19:39
Show Gist options
  • Save sbward/64e1652cf281f40e7d41 to your computer and use it in GitHub Desktop.
Save sbward/64e1652cf281f40e7d41 to your computer and use it in GitHub Desktop.
Get mixpanel people without emails
<?php
include "mixpanel_data.php"
$mp = new Mixpanel($api_key, $api_secret);
$data = $mp->request(array('engage'), array(
'where' => 'properties["email"] == ""',
'page' => $page
));
var_dump($data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment