Possible to fetch messages by message id(s)?

Hi darylsze,

If you want to retrieve the reply messages of a specific parent message, you can use

BaseMessage.getThreadedMessagesByTimestamp(long, ThreadMessageListParams, GetThreadedMessagesHandler)

where the “BaseMessage” would be the parent message object.

If what you want is to get all messages + reply messages at the same time, you can use either one of the methods below:

BaseChannel.getMessagesByTimestamp(long, MessageListParams, GetMessagesHandler)
BaseChannel.getMessagesById(long, MessageListParams, GetMessagesHandler)

with MessageListParam.setIncludeReplies(true).