<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Meraki disable SSID via Postman RESTAPI Call in Network Platform API</title>
    <link>https://community.cisco.com/t5/network-platform-api/meraki-disable-ssid-via-postman-restapi-call/m-p/3486918#M9360</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I finally completed my work by leveraging this document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://dashboard.meraki.com/api_docs#update-the-attributes-of-an-ssid" title="https://dashboard.meraki.com/api_docs#update-the-attributes-of-an-ssid"&gt;https://dashboard.meraki.com/api_docs#update-the-attributes-of-an-ssid&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax and guidelines are clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H4 class="apiAttrName" style="font-family: cisco-sans; margin-top: 1.414em; margin-bottom: 0.5em; padding-top: 1.5em; color: #979797;"&gt;SAMPLE REQUEST&lt;/H4&gt;&lt;PRE style="font-family: monospace, monospace;"&gt;
&lt;P&gt;&lt;CODE class="hljs rust" style="font-family: monospace, monospace; font-size: 1.2em; background-position: initial; color: #4d4d4c; padding: 1em 1.5em;"&gt;curl -L -H &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;'X&lt;/SPAN&gt;-Cisco-Meraki-API-Key: &amp;lt;key&amp;gt;' -X PUT -H &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;'Content&lt;/SPAN&gt;-Type: application/json' --data-binary '{&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"name"&lt;/SPAN&gt;:&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"new SSID name"&lt;/SPAN&gt;, &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"enabled"&lt;/SPAN&gt;:&lt;SPAN class="hljs-keyword" style="color: #8959a8;"&gt;true&lt;/SPAN&gt;, &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"authMode"&lt;/SPAN&gt;:&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"psk"&lt;/SPAN&gt;, &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"encryptionMode"&lt;/SPAN&gt;:&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"wpa"&lt;/SPAN&gt;, &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"psk"&lt;/SPAN&gt;:&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"abcd1234"&lt;/SPAN&gt;, &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"ipAssignmentMode"&lt;/SPAN&gt;:&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"Bridge mode"&lt;/SPAN&gt;}&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;' '&lt;/SPAN&gt;https:&lt;SPAN class="hljs-comment" style="color: #8e908c;"&gt;//dashboard.meraki.com/api/v0/networks/[networkId]/ssids/[numb&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class="hljs rust" style="font-family: monospace, monospace; font-size: 1.2em; background-position: initial; color: #4d4d4c; padding: 1em 1.5em;"&gt;&lt;SPAN class="hljs-comment" style="color: #8e908c;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Aug 2017 09:41:07 GMT</pubDate>
    <dc:creator>leon.mflai</dc:creator>
    <dc:date>2017-08-21T09:41:07Z</dc:date>
    <item>
      <title>Meraki disable SSID via Postman RESTAPI Call</title>
      <link>https://community.cisco.com/t5/network-platform-api/meraki-disable-ssid-via-postman-restapi-call/m-p/3486916#M9358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I use following call for disable the SSID of my Meraki organzation but API return 403, I have admin rights for all these networks but I don't know what goes wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;curl --request PUT \&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; --url '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://n189.meraki.com/api/v0/organizations/693139/networks/L_669347494617941251/ssids/1" rel="nofollow" target="_blank"&gt;https://n189.meraki.com/api/v0/organizations/693139/networks/L_669347494617941251/ssids/1&lt;/A&gt;&lt;SPAN&gt;' \&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; --header 'content-type: application/json' \&lt;/P&gt;&lt;P&gt;&amp;nbsp; --header 'x-cisco-meraki-api-key: &amp;lt;Token&amp;gt;' \&lt;/P&gt;&lt;P&gt;&amp;nbsp; --data '{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "enabled": false,&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;=========================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h1&amp;gt;403 Forbidden&amp;lt;/h1&amp;gt;&lt;/P&gt;&lt;P&gt;Request forbidden by administrative rules.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Mar 2019 11:43:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/meraki-disable-ssid-via-postman-restapi-call/m-p/3486916#M9358</guid>
      <dc:creator>leon.mflai</dc:creator>
      <dc:date>2019-03-01T11:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Meraki disable SSID via Postman RESTAPI Call</title>
      <link>https://community.cisco.com/t5/network-platform-api/meraki-disable-ssid-via-postman-restapi-call/m-p/3486917#M9359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ming,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure you can perform the function on your dashboard UI. Sometimes users passwords expire or their password does not meet the org's security requirements. &lt;SPAN style="font-size: 10pt;"&gt;You should be an org admin to make a change. &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Note you don't need the organizations/[orgId] in that URL you are using.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I also suggest opening a support case on this one.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Colin&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Aug 2017 18:57:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/meraki-disable-ssid-via-postman-restapi-call/m-p/3486917#M9359</guid>
      <dc:creator>colo</dc:creator>
      <dc:date>2017-08-20T18:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Meraki disable SSID via Postman RESTAPI Call</title>
      <link>https://community.cisco.com/t5/network-platform-api/meraki-disable-ssid-via-postman-restapi-call/m-p/3486918#M9360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I finally completed my work by leveraging this document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://dashboard.meraki.com/api_docs#update-the-attributes-of-an-ssid" title="https://dashboard.meraki.com/api_docs#update-the-attributes-of-an-ssid"&gt;https://dashboard.meraki.com/api_docs#update-the-attributes-of-an-ssid&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax and guidelines are clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H4 class="apiAttrName" style="font-family: cisco-sans; margin-top: 1.414em; margin-bottom: 0.5em; padding-top: 1.5em; color: #979797;"&gt;SAMPLE REQUEST&lt;/H4&gt;&lt;PRE style="font-family: monospace, monospace;"&gt;
&lt;P&gt;&lt;CODE class="hljs rust" style="font-family: monospace, monospace; font-size: 1.2em; background-position: initial; color: #4d4d4c; padding: 1em 1.5em;"&gt;curl -L -H &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;'X&lt;/SPAN&gt;-Cisco-Meraki-API-Key: &amp;lt;key&amp;gt;' -X PUT -H &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;'Content&lt;/SPAN&gt;-Type: application/json' --data-binary '{&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"name"&lt;/SPAN&gt;:&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"new SSID name"&lt;/SPAN&gt;, &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"enabled"&lt;/SPAN&gt;:&lt;SPAN class="hljs-keyword" style="color: #8959a8;"&gt;true&lt;/SPAN&gt;, &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"authMode"&lt;/SPAN&gt;:&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"psk"&lt;/SPAN&gt;, &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"encryptionMode"&lt;/SPAN&gt;:&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"wpa"&lt;/SPAN&gt;, &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"psk"&lt;/SPAN&gt;:&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"abcd1234"&lt;/SPAN&gt;, &lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"ipAssignmentMode"&lt;/SPAN&gt;:&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;"Bridge mode"&lt;/SPAN&gt;}&lt;SPAN class="hljs-string" style="color: #718c00;"&gt;' '&lt;/SPAN&gt;https:&lt;SPAN class="hljs-comment" style="color: #8e908c;"&gt;//dashboard.meraki.com/api/v0/networks/[networkId]/ssids/[numb&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE class="hljs rust" style="font-family: monospace, monospace; font-size: 1.2em; background-position: initial; color: #4d4d4c; padding: 1em 1.5em;"&gt;&lt;SPAN class="hljs-comment" style="color: #8e908c;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Aug 2017 09:41:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/meraki-disable-ssid-via-postman-restapi-call/m-p/3486918#M9360</guid>
      <dc:creator>leon.mflai</dc:creator>
      <dc:date>2017-08-21T09:41:07Z</dc:date>
    </item>
  </channel>
</rss>

