Is it possible to string together multiple items such as in a scenario where there is a need to search for multiple clients. (I'm working in Powershell, if that is an important detail) In this example - I want to look for info for several MAC addresses - Is it possible to look for more than one at a time? Invoke-RestMethod "$API_URL_Base/networks/$SVP_Id/clients?mac=$MAC" -Headers $Headers What would the formatting be, in order to query for multiple MAC addresses?
... View more