Hello!
I am trying to get the bodies of emails with the following java code:
new ConversationsApi().getConversationsMessageMessage(GetConversationsMessageMessageRequest.builder() .withConversationId(*conversationId*).withMessageId(*messageId*).build())
Unfortunately I do not receive any response or logs, and the program is stuck.
When I try to access the /api/v2/conversations/emails/{conversationId}/messages/{messageId}
endpoint in Postman at the same time, it returns the expected response.
How can I solve this issue or get some additional information about the cause?
Thanks!