We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f3f3b9c + fc6513e commit 8351ae6Copy full SHA for 8351ae6
1 file changed
README.md
@@ -339,6 +339,20 @@ $intercom->replyToConversation(array(
339
"message_type" => "assignment",
340
"assignee_id" => "2"
341
));
342
+// Admin (identified by id) opens a conversation
343
+$intercom->replyToConversation(array(
344
+ "id" => $conversation["id"],
345
+ "type" => "admin",
346
+ "admin_id" => "1",
347
+ "message_type" => "open",
348
+));
349
+// Admin (identified by id) closes a conversation
350
351
352
353
354
+ "message_type" => "close",
355
356
357
358
// MARKING A CONVERSATION AS READ
0 commit comments