how to curl with query string parameter in format of "filter[name]=foo" how to curl with query string parameter in format of "filter[name]=foo" curl curl

how to curl with query string parameter in format of "filter[name]=foo"


The query string needs to be URL encoded so it has to look like this:

https://server/api/v1/products?filter%5Bname%5D=foo

asciitable.com.