Show Replies List
Learn how to manually show the replies page to users in your React Native apps.
Last updated
Learn how to manually show the replies page to users in your React Native apps.
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.
JavaScript
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.
Last updated
const hasChats = await Replies.hasChats();