I have a asp.net web api controller method need the following parameters:
public string Post(int id, List<Guid> guidIds)
I know for the regular multiple parameters passing, I can use
localhost/api/controller/?parameters1=xxx¶meters2=yyy
I'm not sure if it still use thie format to pass multiple parameters including an array. Thank you.