Trying to send a POST request containing array of objects

Hii,
I am trying to send a post request which will have a array of objects as a query parameter
like this

but I am getting Invalid scheme in URL

Need help

I think you should use the Body to send an array instead of an URL param.
If your API requires the URL params as input value, you have to parse your array as key=value pair string for each object. By stringify an array you're not going to have a proper URL string parameters.

Thanks yeah it worked