hello i just get a script from github about the automatisation through google forms https://developer.cisco.com/meraki/build/google-forms-with-the-dashboard-api/ So I have followed the document, created my own google form in order to add meraki admin on the dashboard However when i send the form, i received the following error in my trigger: Cannot read property 'length' of undefined at addMerakiAdmin i didn't changed anything to the script, it seems there is a kind of misconfiguration in int var options = { "method" : "post", "payload": payload, "headers": headers, "content-type": "application/json", "contentLength": payload.length, "followRedirects": true, "muteHttpExceptions":true }; response = UrlFetchApp.fetch('https://'+shard+'.meraki.com/api/v0/organizations/'+orgId+'/admins', options); var result = JSON.parse(response.getContentText()); can you please help me ? thanks regards Antoine
... View more