Hi,
The SetParameterRow doco here mentions the use of "Array of DMAParameterSet" (https://docs.dataminer.services/develop/webservices/WS_v1/WS_Methods_v1/SetParameterRow.html)
However I cannot find any info on DMAParameterSet.
Does anyone have an example for using SetParameterRow?
Thank.
Hi Trong,
Indeed, it seems that this information is missing. Please find below an example for this method:
POST https://myDmaHostname/API/v1/Json.asmx/SetParameterRow
{
"connection": "YourToken",
"dmaID": 123,
"elementID": 20,
"tableIndex": 1,
"parameterSets":
[
{
"ParameterID": 2003,
"Value": 81
},
{
"ParameterID": 2004,
"Value": 82
}
] }
Hope it helps.