We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afff207 commit d7fffb9Copy full SHA for d7fffb9
src/IntercomUsers.php
@@ -21,13 +21,19 @@ public function getUsers($options)
21
{
22
return $this->client->get("users", $options);
23
}
24
-
+
25
+ public function getUser($id, $options = [])
26
+ {
27
+ $path = $this->userPath($id);
28
+ return $this->client->get($path, $options);
29
+ }
30
31
public function deleteUser($id, $options = [])
32
33
$path = $this->userPath($id);
34
return $this->client->delete($path, $options);
35
36
37
public function userPath($id)
38
39
return "users/" . $id;
0 commit comments