When I try to fetch a closed Twilio Conversation on the frontend (using JS SDK) I get a "Not found" error.
Is it possible to fetch closed conversations?
My goal is to allow the user to close a conversation, but still be able to access the message history, while not being allowed to send new messages etc.
EDIT: Adding code snippet to show how Im retrieving the conversation (this is a method on a Javascript class):
public async loadConversation(conversation: ConversationModel) {
try {
const twilioConversation = await this.getClient().getConversationByUniqueName(
conversation.name
);
} catch (e) {
console.error(e);
}
}