Hello.
I'm working on a HTTP POST method which send a JSON object to a C# end point.
Method will return a string (which could be null or not).
My problem is, dataString value is always null when I call my endpoint from Power Automate. If I call this same endpoint from UI Path (a solution to create Robot Process Automation), it's working well, my parameter is not null.
I guess it's a matter of formatting JSON body from Power automate, but I don't found the solution.
I'm Using azure AI to parse PDF, and then extract some values to create my JSON :
And how I create my http request... paramaters are the same between Power Automate and UI Path. The only difference is that with UI Path, I'm using an activity to serialize JSON.
Thanks for any help !
Ok, so I've finally found a solution... a bit strange but... I put this mess directly into the body of my request. Perphaps It could help someone else 🙂