I know this is a very small issue but it has sent me around in circles for a while and I thought it would help someone in the future.
In the help section for the Set-MerakiNetworkGroupPolicy
The line:
$config = $config | ConvertTo-Json
should be
$config = $config | ConvertTo-Json -Depth 20
I know this is a very small issue but it has sent me around in circles for a while and I thought it would help someone in the future. In the help section for the Set-MerakiNetworkGroupPolicy
The line: $config = $config | ConvertTo-Json should be $config = $config | ConvertTo-Json -Depth 20
This will convert the json correctly. Thanks C