Skip to content

Instantly share code, notes, and snippets.

@ctrlaltdylan
Created November 11, 2015 18:14
Show Gist options
  • Save ctrlaltdylan/56134e35295cd45b6a22 to your computer and use it in GitHub Desktop.
Save ctrlaltdylan/56134e35295cd45b6a22 to your computer and use it in GitHub Desktop.
implementation.php
$users = $intercom->getCompanyUsers([
'id' => $company['id'],
])->toArray()['users'];
foreach($users as $user) {
// 442 returned here
$events = $intercom->getUserEvents([
'type' => 'user',
'intercom_user_id' => $user['id'],
]);
dd($events);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment