Hello , Has anyone seen an issue when creating vlan profiles using API ? Im trying to add a new vlan profile into an existing network, here is what im trying : post" https://api.meraki.com/api/v1/networks/:networkId/vlanProfiles" { "iname": "StandardVlan", "name": "My Standard Vlan", "isDefault": true, "vlanNames": [ { "name": "CORP", "vlanId": "17" }, { "name": "AV", "vlanId": "11" }, { "name": "MGMNT", "vlanId": "10" } ], "vlanGroups": [ { "name": "WW-TRUNK", "vlanIds": "10,11,17" } ] } when i try to push this i get the error below: { "errors": [ "invalid named VLANs: CORP,MGMNT. Please add them to the default profile first." ] } If I add these vlans to the default group im able to create the new profile using the API. I'm confused why do i need to add the vlans first to the default group before creating a new vlan group with new vlans. Thanks
... View more