Hello,
i have to send a request to a restful api wich need a list in parameters. I do not find the way to create a DSRequest with a list which is not wrap in a record.
In a nutshell i get this :
and i would like this :
is it possible ?
Thanks for some help.
i have to send a request to a restful api wich need a list in parameters. I do not find the way to create a DSRequest with a list which is not wrap in a record.
In a nutshell i get this :
Code:
param: [{index: "0", type: "DISCARD"}, {index: "1", type: "STOP"}]
Code:
[{index: "0", type: "DISCARD"}, {index: "1", type: "STOP"}]
Thanks for some help.