https://developer.cisco.com/meraki/api-v1/#!get-network When I make a call to "/networks/nnn" I get the network returned with productTypes that take into account the devices on the network, i.e. with just an MX added, it has the single entry "appliance". {
"id": "N1234",
"organizationId": "xxx",
"name": "Net1",
"productTypes": [
"appliance"
],
"timeZone": "Europe/Amsterdam",
"tags": [],
"enrollmentString": null,
"url": "xxx",
"notes": null,
"configTemplateId": "CT4567",
"isBoundToConfigTemplate": true
} https://developer.cisco.com/meraki/api-v1/#!get-organization-networks The same entry in "/organizations/xxx/networks" shows the productTypes for the Configuration Template that the Network is bound to. In this case it's "appliance", "switch", "wireless". {
"id": "N1234",
"organizationId": "xxx",
"name": "Net1",
"productTypes": [
"appliance",
"switch",
"wireless"
],
"timeZone": "Europe/Amsterdam",
"tags": [],
"enrollmentString": null,
"url": "xxx",
"notes": null,
"configTemplateId": "CT4567",
"isBoundToConfigTemplate": true
} Which is correct and/or why are they different?
... View more