KustomerCore.markRead()
Mark a conversation as read
First, initialize chatYou must initialize with
KustomerCore.init()before you can execute any additional Core SDK methods
Examples
// mark a conversation as "read"
KustomerCore.markRead({
conversationId: 'SOME_ID',
messageIds: [
'MESSAGE_ID1',
'MESSAGE_ID2'
});Syntax
KustomerCore.markRead(options)| Parameter | Type | Description |
|---|---|---|
| options | Object | An object containing the
|
Updated 16 days ago