I’m trying to do a bulk rename of APs in Postman. I have Postman set up with the following variables
![The_Roo_0-1734434500083.png The_Roo_0-1734434500083.png](https://community.meraki.com/t5/image/serverpage/image-id/41077iDACE339B44DE0AAA/image-size/medium?v=v2&px=400)
And they work, so if I do any of the following, I get the expected output
GET {{baseUrl}}/organizations
GET {{baseUrl}}/organizations/:organizationId/networks
GET {{baseUrl}}/organizations/:organizationId/devices
GET {{baseUrl}}/networks/:networkId/devices
GET {{baseUrl}}/networks/:networkId/wireless/ssids/
So now I want to use runner, so I created a CSV file called “name-change-data” with a header line and a single line relating to a single AP I want to test on
![The_Roo_1-1734434500083.png The_Roo_1-1734434500083.png](https://community.meraki.com/t5/image/serverpage/image-id/41078iCA25138F409FC47D/image-size/medium?v=v2&px=400)
The serial number is the number seen in the Meraki Dashboard, so I know that is right, and the name is just a different string to what is there at the moment.
I then create a collection called “Bulk Rename APs” that looks like this:
{{baseUrl}}/networks/{{networkId}}/devices/{{serial}}
the format of which was as specified in https://community.meraki.com/t5/Wireless/Rename-AP-with-postman-runner/m-p/21137#M3507
Next, I set up the body section as follows:
{
"name": "{{name}}",
"serial": "{{serial}}"
}
I then go to file>New Runner Tab, and get a window that asks me to “Drag a collection from the sidebar to run”, so I drag “Bulk Rename APs” in. It goes in with a lot of others, so I deselect all of them and reselect “Bulk Rename APs”
![The_Roo_2-1734434500086.png The_Roo_2-1734434500086.png](https://community.meraki.com/t5/image/serverpage/image-id/41079i5DA2D66F9C67808D/image-size/medium?v=v2&px=400)
On the right of the page, I click “Select File” and select “name-change-data.csv” and then click the “run” button. I get the following result:
![The_Roo_3-1734434500088.png The_Roo_3-1734434500088.png](https://community.meraki.com/t5/image/serverpage/image-id/41081i1193540EF7021CCA/image-size/medium?v=v2&px=400)
And the console shows
![The_Roo_4-1734434500089.png The_Roo_4-1734434500089.png](https://community.meraki.com/t5/image/serverpage/image-id/41080i46532F864358BE84/image-size/medium?v=v2&px=400)
What am I doing wrong, and why is github flagged?
GET https://raw.githubusercontent.com/dexterlabora/json-magic/master/postman/postman-viz-jsonmagic-templ...
All advice gratefully recieved!
Thanks
Roo