Hi, I did something similar to you with Python and a xlsx file. To read the xlsx file I used the pandas Module. In the xlsx file I use two colomns, mac adress for filtering and the new name to be applied. Here is the API i use (it's a POST request): url = baseUrl + "/networks/" + net_id + "/clients/provision"
body = {
"mac" : mac_client ,
"name" : name_client ,
"devicePolicy" : device_Policy
}
https://developer.cisco.com/meraki/api/#/rest/api-endpoints/clients/provision-network-clients Axel
... View more