hi, You csv if you open in notepad should read like this; networkid,number Nxxxxxxxx,0 Nxxxxxxxx,0 If you are sure that the SSID is always ID 0 then you could just hard-code this in the command, so you would only need to have the list of network ids in your csv. the reason it's failing is because the put statement requires the variables, whereas you have them in the path variables section. it should read: https://api.meraki.com/api/v0/networks/{{networkId}}/ssids/{{number}} if you delete where it says :networkid and type {{networkid}} you'll see the path variable disappear from the params section. then either repeat for the :number or set this value to 0 if your ssid is always 0. hope this helps. thanks
... View more