Hi,
I'm trying to get a list of posts for a conversation/thread via the "Send http request" action for Office 365 Groups in Power Automate.
With this activity I'm able to get a list of threads for a given group using "https://graph.microsoft.com/v1.0/groups/[Specific ID removed]/threads" successfully.
In a next step, I take the "id" of a thread returned by the the first step and try a GET request to "https://graph.microsoft.com/v1.0/groups/[Specific ID removed]/threads/[Specific ID removed]/posts" according to https://learn.microsoft.com/en-us/graph/api/conversationthread-list-posts. This fails with this message:
{
"error": {
"code": "ErrorInvalidIdMalformed",
"message": "Id is malformed."
}
}
Im pretty sure the Id should be correct as i took it directly from the result of querying the threads before. Also the ID used looks pretty similar to the example given on the docs page mentioned above (in terms of length and characters).
I would appreciate any more hints to get this working ... Thanks in advance ...