
Announcements
Hi ,
Is it possible to get replied to this message time from outlook using power automate cloud flow.
screen shot has been attached.
Hi @pushpaLatha1,
You can use the ConversationId of the received message to track down all messages with the same conversationId. That should also list the replies.
Below is an example with the Graph API list messages method:
List messages - Microsoft Graph v1.0 | Microsoft Learn
The Send an HTTP request action (of the Outlook 365 connector) uses the below URI.
https://graph.microsoft.com/v1.0/me/mailFolders/@{variables('mailFolderId')}/messages?$filter=conversationId eq '@{variables('ConversationId')}'&$select=subject,sentDateTime
The sample also uses to variables. One with the id of the Sent Items mailfolder and one with the id of the conversation.