Whenever I attempt to retrieve a closed Twilio Conversation on the frontend using the JS SDK, I encounter a "Not found" error.
Can closed conversations be fetched?
My objective is to enable users to close a conversation while still having access to the message history without the ability to send new messages.
UPDATE: Here is a code snippet showcasing how I am fetching the conversation (this method belongs to a JavaScript class):
public async loadConversation(conversation: ConversationModel) {
try {
const twilioConversation = await this.getClient().getConversationByUniqueName(
conversation.name
);
} catch (e) {
console.error(e);
}
}