Skip to content

Commit 4670e2c

Browse files
author
Brian White
authored
Merge pull request #212 from intercom/brianw/update-docs
Documentation update
2 parents 9ebffdf + 226502c commit 4670e2c

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

README.md

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -255,28 +255,6 @@ $client->conversations->markConversationAsRead("7890");
255255
$client->counts->getCounts([])
256256
```
257257

258-
## Bulk
259-
260-
```php
261-
// Bulk create/update users
262-
// See more options here: https://developers.intercom.io/reference#bulk-user-operations
263-
$client->bulk->users([
264-
"items" => [
265-
["method" => "post","data_type" => "user","data" => ['email' => '[email protected]']],
266-
["method" => "post","data_type" => "user","data" => ['email' => '[email protected]']]
267-
]
268-
]);
269-
270-
// Bulk create/update users
271-
// See more options here: https://developers.intercom.io/reference#bulk-event-operations
272-
$client->bulk->events([
273-
"items" => [
274-
["method" => "post","data_type" => "event","data" => ['event_name' => 'test-event', "email" => "[email protected]", "created_at" => 1468055411]],
275-
["method" => "post","data_type" => "event","data" => ['event_name' => 'test-event', "email" => "[email protected]", "created_at" => 1467969011]]
276-
]
277-
]);
278-
```
279-
280258
## Notes
281259

282260
```php

0 commit comments

Comments
 (0)