I'm pushing switch access policies using:
https://api.meraki.com/api/v1/networks/{networkId}/switch/accessPolicies
Everything looks great on the dashboard after I add them except for the RADIUS secret that shows when I click the "Show" button on the dashboard. The secret that is shown is incorrect, and is the same every time even when I change the secret I'm sending via API. Example of my payload:
"radiusServers": [
{
"host": "1.1.1.1",
"port": 1812,
"secret": "secretcode"
},
{
"host": "2.2.2.2",
"port": 1812,
"secret": "acompletelydifferentsecretcode"
}
In the above example, both of the secrets would appear as the same in the dashboard. Am I doing something wrong here or is this an issue with the API?