This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Retrieves a conversation by conversation ID.
If you don't have the conversation ID, use getOrCreateConversation()
to retrieve the conversation using the visitor, contact, or member ID.
function getConversation(conversationId: string): Promise<Conversation>;
Conversation ID.
import { conversations } from "@wix/inbox";
async function getConversation(conversationId) {
const response = await conversations.getConversation(conversationId);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.