Hello,
I'd like to have a curl line to get the version of any devices of my networks, and if the network is bound to a template, get the name of the template.
I already know that :
curl -L -H 'X-Cisco-Meraki-API-Key: ###KEY###' -X GET -H 'Content-Type: application/json' 'https://api.meraki.com/api/v0/organizations/<org_id>/networks'
gives me the ID of the template the network is bound to, and that GET -H 'Content-Type: application/json' 'https://api.meraki.com/api/v0/organizations/<org_id>/configTemplates gives me the name of the templates
To achieve what I need, I think would need to :
- find a way to get the firmware of a given device (absolutely no idea where to find this).
Can any of you help me with this ? I'm currently searching in the API library.
Thanks in advance.