<?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: Error Code 400 - PUT Script in Network Platform API</title>
    <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425371#M4238</link>
    <description>&lt;P&gt;Interesting. I was testing with Postman and everything was fine. But when using your code, I actually can reproduce the 400 error. You can edit the following line to get the error details.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;print(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;f"Failed to update SSID configuration for {ssid_config['name']}. Status code: {put_response.status_code}. &lt;STRONG&gt;Errors: {put_response.text}&lt;/STRONG&gt;"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The error I got was "&lt;STRONG&gt;{"errors":["'encryptionMode' must be one of: 'wep' or 'wpa'"]}&lt;/STRONG&gt;"&lt;/P&gt;&lt;P&gt;There were some discussions about this.&lt;BR /&gt;&lt;A href="https://community.meraki.com/t5/Wireless/API-problems-with-update-SSID/m-p/199648" target="_blank"&gt;https://community.meraki.com/t5/Wireless/API-problems-with-update-SSID/m-p/199648&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.meraki.com/t5/Wireless/quot-Update-the-attributes-of-an-SSID-quot-AP-endpoint-broken/m-p/61491" target="_blank"&gt;https://community.meraki.com/t5/Wireless/quot-Update-the-attributes-of-an-SSID-quot-AP-endpoint-broken/m-p/61491&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Looks like the solution is to modify the '&lt;SPAN&gt;encryptionMode' to either 'wep' or 'wpa'. Not sure why your script works in the sandbox environment. If there are further questions, I would suggest file a support case.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Apr 2024 15:17:02 GMT</pubDate>
    <dc:creator>xiaoyhu</dc:creator>
    <dc:date>2024-04-09T15:17:02Z</dc:date>
    <item>
      <title>Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425362#M4229</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;HI All,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;When I applied the script for replacing "RADIUS Servers", I encountered the following error code. However, It is working as expected on the "Sandbox".&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Updated RADIUS server radius1 for SSID ONE-1900&lt;BR /&gt;Updated RADIUS server radius2 for SSID ONE-1900&lt;BR /&gt;Updated RADIUS server radius3 for SSID ONE-1900&lt;BR /&gt;Failed to update SSID configuration for ONE-1900. Status code: 400&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Script:-&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;import requests&lt;/P&gt;&lt;P&gt;# Define your API key, network ID, and base URL&lt;BR /&gt;API_KEY = 'YOUR_API_KEY'&lt;BR /&gt;NETWORK_ID = 'YOUR_NETWORK_ID'&lt;BR /&gt;BASE_URL = '&lt;A href="https://api.meraki.com/api/v1" target="_blank" rel="nofollow noopener noreferrer"&gt;https://api.meraki.com/api/v1&lt;/A&gt;'&lt;/P&gt;&lt;P&gt;# Define the old and new radius server values&lt;BR /&gt;OLD_RADIUS_SERVERS = {&lt;BR /&gt;'radius1': 'OLD_RADIUS_SERVER_IP_1',&lt;BR /&gt;'radius2': 'OLD_RADIUS_SERVER_IP_2',&lt;BR /&gt;'radius3': 'OLD_RADIUS_SERVER_IP_3'&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;NEW_RADIUS_SERVERS = {&lt;BR /&gt;'radius1': 'NEW_RADIUS_SERVER_IP_1',&lt;BR /&gt;'radius2': 'NEW_RADIUS_SERVER_IP_2',&lt;BR /&gt;'radius3': 'NEW_RADIUS_SERVER_IP_3'&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;# Define headers with API key&lt;BR /&gt;headers = {&lt;BR /&gt;'X-Cisco-Meraki-API-Key': API_KEY,&lt;BR /&gt;'Content-Type': 'application/json'&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# Function to update RADIUS server configuration&lt;BR /&gt;def update_radius_config(ssid_config):&lt;BR /&gt;# Check if RADIUS servers are configured&lt;BR /&gt;if 'radiusServers' in ssid_config:&lt;BR /&gt;radius_servers = ssid_config['radiusServers']&lt;BR /&gt;updated = False&lt;BR /&gt;for server in radius_servers:&lt;BR /&gt;for old_name, old_host in OLD_RADIUS_SERVERS.items():&lt;BR /&gt;if server['host'] == old_host:&lt;BR /&gt;new_host = NEW_RADIUS_SERVERS[old_name]&lt;BR /&gt;server['host'] = new_host&lt;BR /&gt;updated = True&lt;BR /&gt;print(&lt;BR /&gt;f"Updated RADIUS server {old_name} for SSID {ssid_config['name']}"&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;if updated:&lt;BR /&gt;# Make a PUT request to update the SSID configuration&lt;BR /&gt;ssid_config_url = f"{BASE_URL}/networks/{NETWORK_ID}/wireless/ssids/{ssid_config['number']}"&lt;BR /&gt;put_response = requests.put(ssid_config_url,&lt;BR /&gt;json=ssid_config,&lt;BR /&gt;headers=headers)&lt;BR /&gt;if put_response.status_code == 200:&lt;BR /&gt;print(&lt;BR /&gt;f"SSID configuration updated successfully for {ssid_config['name']}"&lt;BR /&gt;)&lt;BR /&gt;else:&lt;BR /&gt;print(&lt;BR /&gt;f"Failed to update SSID configuration for {ssid_config['name']}. Status code: {put_response.status_code}"&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# Get SSIDs of the network&lt;BR /&gt;url = f"{BASE_URL}/networks/{NETWORK_ID}/wireless/ssids"&lt;BR /&gt;response = requests.get(url, headers=headers)&lt;BR /&gt;if response.status_code == 200:&lt;BR /&gt;ssids = response.json()&lt;BR /&gt;for ssid in ssids:&lt;BR /&gt;update_radius_config(ssid)&lt;BR /&gt;else:&lt;BR /&gt;print("Failed to retrieve SSIDs.")&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 13:18:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425362#M4229</guid>
      <dc:creator>Vmadathil</dc:creator>
      <dc:date>2024-04-08T13:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425363#M4230</link>
      <description>&lt;P&gt;I think you need to include a variable in your script to include the following information.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;authMode&lt;/STRONG&gt; ,&lt;STRONG&gt;encryptionMode&lt;/STRONG&gt; and &lt;STRONG&gt;wpaEncryptionMode&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.cisco.com/meraki/api-v1/update-network-wireless-ssid/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://developer.cisco.com/meraki/api-v1/update-network-wireless-ssid/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 13:29:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425363#M4230</guid>
      <dc:creator>aleabrahao</dc:creator>
      <dc:date>2024-04-08T13:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425364#M4231</link>
      <description>&lt;P&gt;My guess is that ssid_config contains a parameter that you got with f"{BASE_URL}/networks/{NETWORK_ID}/wireless/ssids" that can not be "put".&lt;/P&gt;&lt;P&gt;Have you considered using the Meraki Python SDK?  It makes stuff so much easier ...&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 19:42:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425364#M4231</guid>
      <dc:creator>Philip D'Ath</dc:creator>
      <dc:date>2024-04-08T19:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425365#M4232</link>
      <description>&lt;P&gt;It is working on Sandbox environment without any issues. I haven't used Python SDK.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 05:17:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425365#M4232</guid>
      <dc:creator>Vmadathil</dc:creator>
      <dc:date>2024-04-09T05:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425366#M4233</link>
      <description>&lt;P&gt;Agreed with Philip that there might be something unexpected in the ssid_config from the GET call.&lt;BR /&gt;In your case, as you are updating the RadiusServers only, a more efficient way is to just include the updated RadiusSevers parameter in the json body instead of including the entire ssid_config. &lt;/P&gt;&lt;P&gt;For example, if I want to update the SSID name, I can only have one parameter in the json body in the API PUT operation. Those other parameters not in the body will remain unchanged. Hopefully, this is helpful.{{baseUrl}}/networks/:networkId/wireless/ssids/:number&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;"name": "UPDATED-SSID-NAME"&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 06:33:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425366#M4233</guid>
      <dc:creator>xiaoyhu</dc:creator>
      <dc:date>2024-04-09T06:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425367#M4234</link>
      <description>&lt;P&gt; Let me briefly explain the requirement here.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We recently migrated our "RADIUS Servers" and IP got changed. So, we need to replace old RADIUS with new one. We have networks in all regions. According to the region (US, EMEA, APAC), the order of the RADIUS servers will be changed. We are using the same port and Radius key. Hence, the script should be capable of replacing given old radius servers with the new one in each ssids under a particular network. We are using same RADIUS servers in multiple SSIDs.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 07:30:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425367#M4234</guid>
      <dc:creator>Vmadathil</dc:creator>
      <dc:date>2024-04-09T07:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425368#M4235</link>
      <description>&lt;P&gt;I tested the script using the following parameters. But no luck. Got the same error.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{'host': 'radius_server_1_ip', 'port': radius_server_1_port, 'secret': 'radius_server_1_secret'},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{'host': 'radius_server_2_ip', 'port': radius_server_2_port, 'secret': 'radius_server_2_secret'},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{'host': 'radius_server_3_ip', 'port': radius_server_3_port, 'secret': 'radius_server_3_secret'}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 07:53:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425368#M4235</guid>
      <dc:creator>Vmadathil</dc:creator>
      <dc:date>2024-04-09T07:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425369#M4236</link>
      <description>&lt;P&gt;I modified the line as follows. but no luck..&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;ssid_config_url = BASE_URL + "/networks/" + NETWORK_ID + "/wireless/ssids/" + str(ssid_config['number'])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Do you have any other recommendation.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 08:00:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425369#M4236</guid>
      <dc:creator>Vmadathil</dc:creator>
      <dc:date>2024-04-09T08:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425370#M4237</link>
      <description>&lt;P&gt;On the basis of your message, I believe the issue is with the following part of the script. &lt;/P&gt;&lt;P&gt;if updated:&lt;BR /&gt;# Make a PUT request to update the SSID configuration&lt;BR /&gt;ssid_config_url = f"{BASE_URL}/networks/{NETWORK_ID}/wireless/ssids/{ssid_config['number']}"&lt;BR /&gt;put_response = requests.put(ssid_config_url,&lt;BR /&gt;json=ssid_config,&lt;BR /&gt;headers=headers)&lt;BR /&gt;if put_response.status_code == 200:&lt;BR /&gt;print(&lt;BR /&gt;f"SSID configuration updated successfully for {ssid_config['name']}"&lt;BR /&gt;)&lt;BR /&gt;else:&lt;BR /&gt;print(&lt;BR /&gt;f"Failed to update SSID configuration for {ssid_config['name']}. Status code: {put_response.status_code}"&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;I changed many things but no luck. Could you please correct the script..&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 08:26:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425370#M4237</guid>
      <dc:creator>Vmadathil</dc:creator>
      <dc:date>2024-04-09T08:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425371#M4238</link>
      <description>&lt;P&gt;Interesting. I was testing with Postman and everything was fine. But when using your code, I actually can reproduce the 400 error. You can edit the following line to get the error details.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;print(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;f"Failed to update SSID configuration for {ssid_config['name']}. Status code: {put_response.status_code}. &lt;STRONG&gt;Errors: {put_response.text}&lt;/STRONG&gt;"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The error I got was "&lt;STRONG&gt;{"errors":["'encryptionMode' must be one of: 'wep' or 'wpa'"]}&lt;/STRONG&gt;"&lt;/P&gt;&lt;P&gt;There were some discussions about this.&lt;BR /&gt;&lt;A href="https://community.meraki.com/t5/Wireless/API-problems-with-update-SSID/m-p/199648" target="_blank"&gt;https://community.meraki.com/t5/Wireless/API-problems-with-update-SSID/m-p/199648&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.meraki.com/t5/Wireless/quot-Update-the-attributes-of-an-SSID-quot-AP-endpoint-broken/m-p/61491" target="_blank"&gt;https://community.meraki.com/t5/Wireless/quot-Update-the-attributes-of-an-SSID-quot-AP-endpoint-broken/m-p/61491&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Looks like the solution is to modify the '&lt;SPAN&gt;encryptionMode' to either 'wep' or 'wpa'. Not sure why your script works in the sandbox environment. If there are further questions, I would suggest file a support case.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 15:17:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425371#M4238</guid>
      <dc:creator>xiaoyhu</dc:creator>
      <dc:date>2024-04-09T15:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425372#M4239</link>
      <description>&lt;P&gt;I tested this today, I am also getting the same error on the production network.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Updated RADIUS server radius1 for SSID ONE-1900&lt;BR /&gt;Updated RADIUS server radius2 for SSID ONE-1900&lt;BR /&gt;Updated RADIUS server radius3 for SSID ONE-1900&lt;BR /&gt;Failed to update SSID configuration for ONE-1900. Status code: 400. Errors: {"errors":["'encryptionMode' must be one of: 'wep' or 'wpa'"]}&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 07:21:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425372#M4239</guid>
      <dc:creator>Vmadathil</dc:creator>
      <dc:date>2024-04-11T07:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425373#M4240</link>
      <description>&lt;P&gt;Anybody could add the encryption mode and make it work. Please let me know if yes.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 12:46:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425373#M4240</guid>
      <dc:creator>Vmadathil</dc:creator>
      <dc:date>2024-04-11T12:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425374#M4241</link>
      <description>&lt;P&gt;&lt;A href="https://community.meraki.com/t5/user/viewprofilepage/user-id/104697"&gt;@Vmadathil&lt;/A&gt; That did work for me. Just add a line before the put operation.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT color="#FF0000"&gt;&lt;SPAN&gt;ssid_config&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;'encryptionMode'&lt;/SPAN&gt;&lt;SPAN&gt;] &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;'wep'&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;put_response&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;requests&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;put&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ssid_config_url&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;json&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;ssid_config&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;headers&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;headers&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 11 Apr 2024 14:49:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425374#M4241</guid>
      <dc:creator>xiaoyhu</dc:creator>
      <dc:date>2024-04-11T14:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error Code 400 - PUT Script</title>
      <link>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425375#M4242</link>
      <description>&lt;P&gt;Thank you so much &lt;A class="" href="https://community.meraki.com/t5/user/viewprofilepage/user-id/4321" target="_self"&gt;&lt;SPAN class=""&gt;ShawnHu&lt;/SPAN&gt;&lt;/A&gt;, &lt;A class="" href="https://community.meraki.com/t5/user/viewprofilepage/user-id/340" target="_self"&gt;&lt;SPAN class=""&gt;PhilipDAth&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;  &amp;amp; &lt;A class="" href="https://community.meraki.com/t5/user/viewprofilepage/user-id/51406" target="_self"&gt;&lt;SPAN class=""&gt;alemabrahao&lt;/SPAN&gt;&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2024 08:16:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/error-code-400-put-script/m-p/5425375#M4242</guid>
      <dc:creator>Vmadathil</dc:creator>
      <dc:date>2024-04-15T08:16:14Z</dc:date>
    </item>
  </channel>
</rss>

