Parameter is an object that has Name and Value properties. So something like this:
“Parameters”:[{“Name”:“p_1”,“Value”:999}, {“Name”:“p_2”,“Value”:“somestring”}]
It has to follow conventions used by JsonMessage, otherwise the server couldn’t deserialize request properly. The easiest way to quickly find out what exactly you need to pass in different situations is to add some logging at server side and make requests with .net client.
I’ve taken a look at that library. Although I don’t know python it seems possible to build params object that would be serialized properly. Here’s my attempt at
saving code here, don’t know how long that link would last