Hi! I know your solution uses the HTTP action, but I was running into an issue with authentication. I'm using Invoke an HTTP request (HTTP with Azure AD) to try and get around that. It SEEMS to be working, but I'm getting a 400 error.
{
"host": {
"connectionReferenceName": "shared_webcontents",
"operationId": "InvokeHttp"
},
"parameters": {
"request/method": "POST",
"request/url": "https://graph.microsoft.com/v1.0/teams/40000000-2000-4000-a00-b000000000/channels/19%3A600000000000000000000000000050%40thread.tacv2/members",
"request/headers": {
"Content-type": "application/json"
},
"request/body": "{\"@odata.type\": \"#microsoft.graph.aadUserConversationMember\",\n\"roles\": [],\n\"user@odata.bind\": \"https://graph.microsoft.com/v1.0/users('40000000-8008-4000-8000-90000000000')\"}"
}
}
That is the sanitized raw input from the flow. I can run it successfully from the Graph Explorer so I'm stuck on why it's not working in PowerAutomate. Any ideas?