markThreadUnread

fun markThreadUnread(channelType: String, channelId: String, threadId: String): Call<Unit>

Marks a thread as unread.

Parameters

channelType

Type of the channel.

channelId

Id of the channel.

threadId

Id of the thread to mark as unread.


fun markThreadUnread(channelType: String, channelId: String, threadId: String, messageId: String): Call<Unit>

Deprecated

Marking a thread as unread from a given message is currently not supported. Passing messageId has no effect and the whole thread is marked as unread.Use markThreadUnread(channelType, channelId, threadId) instead.

Marks a thread as unread.

Parameters

channelType

Type of the channel.

channelId

Id of the channel.

threadId

Id of the thread to mark as unread.

messageId

Id of the message from where the thread should be marked as unread.