Unfortunally is not working....
I get the error: THE FUNCTION HAS SOME INVALID ARGUMENTS

here is one part of the swagger file:
"operationId": "ApiadditionPost",
"produces": [
"application/json"
],
"parameters": [
{
"name": "Body",
"in": "body",
"required": true,
"x-is-map": false,
"schema": {
"title": "toexportRequest",
"type": "object",
"properties": {
"param1": {
"type": "number"
},
"param2": {
"type": "number"
}
}.....................
Basically when we run the server with the debugger, we can see that ther server expects this:
{"parameters":[{"param1":3,"param2":2}] }
this shows no error: .ApiadditionPost( { param1: Value(TextInput1.Text), param2: Value(TextInput2.Text) } )
but on the server is then: {"param1":3,"param2":2}
so we still miss this part: {"parameters":[ ...... ]}
We tried everything, Table , Collection, .... everything that came up to our mind, but no success..... Also in the documentation we found nothing similar.
Do you have some ideas what else we could try?
Thank you
Cheers