Skip to content

Commit 127e817

Browse files
authored
Merge pull request #167 from intercom/amb/list-users
Add explicit directions on how to list all users
2 parents 845ceab + 11d0325 commit 127e817

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,11 @@ $client->users->create([
6868
]
6969
]);
7070

71-
// Find user by email
71+
// Find a single user by email
7272
$client->users->getUsers(["email" => "[email protected]"]);
73+
74+
// List all users
75+
$client->users->getUsers([]);
7376
```
7477

7578
## Leads

0 commit comments

Comments
 (0)