I want to get the email size of the email from a shared email Box not email attacments size or Email Body Size in studio Web. I have requirement to retrieve email size and check if email size is greater than 5 mb then stop the maestro flow.
I tried using microsoft outlook 365 http request by providing the url with email id, email message id but it is not exposing the size of the email property.
Is there any way to get the email size directly from property or any activity.
@Anil_G unfortunately I am still not able to see the size in the output response with expression provided. Status code = 200 but the property is still not exposed. singleValueExtendedProperties itself is not seen
Could you share the full 400 error and confirm whether you’re using the Microsoft Graph HTTP Request activity or the Microsoft 365 connector in Studio Web?
Thanks All, I was able to get size only after passing these parameters $select = “subject” and $expand = singleValueExtendedProperties($filter=id eq ‘Integer 0x0E08’). It was not working when passed directly /users/{sharedMailbox}/messages/{messageId}?$expand = singleValueExtendedProperties($filter=id eq ‘Integer 0x0E08’)