Hi, I am doing a search of all my MDM devices associated with a network. I have more than 1000 devices associated but the API only lets me see 1000. Is there a way to remove this restriction? $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" $headers.Add("X-Cisco-Meraki-API-Key", $API_key) $response = Invoke-RestMethod "https://api-mp.meraki.com/api/v1/networks/${Net_ID}/sm/devices?perPage=1000" -Method 'GET' -Headers $headers -Body $body return $response
... View more