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 f2c8cf3 commit 77b4509Copy full SHA for 77b4509
src/IntercomCompanies.php
@@ -28,6 +28,17 @@ public function create($options)
28
return $this->client->post("companies", $options);
29
}
30
31
+ /**
32
+ * Updates a Company.
33
+ * @see https://developers.intercom.io/reference#create-or-update-company
34
+ * @param array $options
35
+ * @return mixed
36
+ * @throws \GuzzleHttp\Exception\GuzzleException
37
+ */
38
+ public function update($options) {
39
+ return $this->create($options);
40
+ }
41
+
42
/**
43
* Returns list of Companies.
44
* @see https://developers.intercom.io/reference#list-companies
0 commit comments