I have an API to create Vlans in a network with type as Appliance, but the same API doesn't work if the network type is Combined. Is there a solution for this?
I am using the below API and the error i am getting is "{\"errors\":[\"This endpoint only supports MX networks\"]}
https://api.meraki.com/api/v1/networks/"Network_Id"/appliance/vlans
Body:
{
"applianceIp": "x.x.x.x",
"id": "1234",
"name": "TestVlan",
"netid": "net_id",
"netname": "abc",
"subnet": "x.x.x.x/28"
}
Thanks in advance.