Hello @lbendlin and sorry .. yes of course I forgott that, sorry.
So, I work for a school and I need to authenticate to that application to retrieve timetables teachers and students.
The authentication process should be like this :
{"id":"ID","method":"authenticate","params":{"user":"ANDROID",
"password":"PASSWORD", "client":"CLIENT"},"jsonrpc":"2.0"}
The parameter CLIENT is a unique identifier for the client app. The parameter client will be
mandatory in the future.
result:
{"jsonrpc":"2.0","id":"ID","result":
{"sessionId":"644AFBF2C1B592B68C6B04938BD26965","personType"=2,"personId"=17}
When I try to authenticate using, from example, postman or another tool I found in the web it wors with the following data :

When posting with them, I receive the following answer :

Then I can use the "SessionID" to make my request.
But now, when I do the same using the html component of Power Automate, the answer is not the same and I dont receive any SessionID:
Here's my html component to post :

and here's the answer : we can see that it's completely different that the one here above and the one expected which should be :
{"jsonrpc":"2.0",
"id":"ID",
"result":
{"sessionId":"644AFBF2C1B592B68C6B04938BD26965",
"personType"=2,
"personId"=17}

So I dont know howto define my html component to make it working ...
Thanks to all for your help 🙂