Below is the code I am using to send URL as plain text, can I format the body to send it as button response which will open the URL in another tab? If yes, then how?
let body = {
"textBody": "https://google.com"
};
let opts = {
"useNormalizedMessage": false
};
// Send message
ConversationsApi.postConversationsMessageCommunicationMessages(conversationId, communicationId, body, opts)