Observe active conversations
You can return the conversation ids of active conversations of the current user.
Kustomer.chatProvider.getOpenConversationCount { result in
if case .success(let count) = result {
print("\(count) open conversations")
}
}
UseChatProviderto add listeners for new conversationsYou can also add listeners for newly created conversations within the SDK using
ChatProviderfrom the Kustomer Core SDK.To learn more, see Build your own UI.