Show Replies List
Display the replies page to your Android users manually, listing their previous chats. Also shows how to check whether a user has any chats first.
Last updated
Display the replies page to your Android users manually, listing their previous chats. Also shows how to check whether a user has any chats first.
The below API can be used to display the replies page. This page contains a list of any previous chats that were opened for this customer.
Replies.show();Replies.show()If a user has no pre-existing chats, the previous API won't show the replies page. You can check whether the user has any available chats or not using the below API.
Replies.hasChats();Replies.hasChats()Last updated