<?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: Rate Limit exceeded -DNA center API in Network Platform API</title>
    <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5018021#M8714</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;I am using your dnacenter_create_report_download.py&lt;BR /&gt;The output of the function "get_report_file" is dictionary. These are the params i am receiving in one of the dictionary&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;{"hostName": "--", "username": "xxxxxxx", "macAddress": "xxxxxxxx, "ipv4": "xxxxxxxx", "ipv6": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "deviceType": "Wireless", "connectionStatus": "Connected", "averageHealthScore_min": "xx", "averageHealthScore_max": "10", "averageHealthScore_median": "7", "usage_sum": "0.0", "connectedDeviceName": "xxxxx", "frequency": "xx", "rssi_median": "xx", "snr_median": "xx", "site": "xxxx", "lastUpdated": "14 Feb, 06:50:00 AM", "apGroup": "xxx", "ssid": "xxxx", "vlan": "xxxx", "vnid": "--", "onboardingEventTime": "14 Feb, 06:40:14 AM", "assocDoneTimestamp": "14 Feb, 06:40:09 AM", "authDoneTimestamp": "14 Feb, 06:40:10 AM", "aaaServerIp": "xxxxx", "dhcpDoneTimestamp": "14 Feb, 06:40:14 AM", "maxDhcpDuration_max": "xxx", "dhcpServerIp": "xxxx", "linkSpeed": "--", "txRate_min": "0.0", "txRate_max": "0.0", "txRate_avg": "0.0", "rxRate_min": "0.0", "rxRate_max": "xxxx", "rxRate_avg": "xxxxx", "txBytes_sum": "0.0", "rxBytes_sum": "0.0", "dataRate_median": "xxx", "dot11Protocol": "xxxxx"},&lt;BR /&gt;From this dict, i am able to retrieve the HostName, Linkspeed, Mac_address, IPV4, connecteddevice, VLANID.&amp;nbsp; There is no information about the port&lt;/P&gt;&lt;P&gt;I am using the version 2.3.5.5 maybe upgrading to the version 2.3.7.4 which you are using might help me get the port details&lt;/P&gt;&lt;P&gt;Hoping to hear from you soon.&lt;BR /&gt;Thanks in advance&lt;/P&gt;</description>
    <pubDate>Tue, 20 Feb 2024 12:31:22 GMT</pubDate>
    <dc:creator>beginnerciscouser</dc:creator>
    <dc:date>2024-02-20T12:31:22Z</dc:date>
    <item>
      <title>Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5015401#M8708</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I am beginner user of Cisco catalyst center. I want to get the client details using mac-address as the parameter.At the moment, i am able to receive the client details of a list of mac-address (which inlcude 10,000 mac address) but this process takes about 5-6 hours to receive the data.&lt;/P&gt;&lt;P&gt;So now i want to speed up the process, for that i would like to receive atleast 5 clients/ minute .Such the process will take less time.&lt;/P&gt;&lt;P&gt;This is the error message :&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Error: 429, {&lt;BR /&gt;"error" : "Rate Limit exceeded; BapiName: Get Client Detail, RateLimit config details: RateLimitContext{rate=100, windowUnit='minute', windowDuration=1, maxConcurrentExecutionsPermitted=100}",&lt;BR /&gt;"bapiExtendedStatusCode" : "REJECTED_ABOVE_THROTTLE_LIMIT",&lt;BR /&gt;"bapiExtendedStatusDescription" : "For BAPI: Get Client Detail, maximum allowed BAPI instances per 1 minute is 100. The limit has been reached for the time-window between Fri Feb 09 09:34:19 UTC 2024 and now"&lt;BR /&gt;}&lt;BR /&gt;Could someone help me to solve this issue.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 09:38:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5015401#M8708</guid>
      <dc:creator>beginnerciscouser</dc:creator>
      <dc:date>2024-02-09T09:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5015450#M8709</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Not sure what version of DNAC you are running, but certain APIs have rate-limits (throttling). Your issue is identified in your DNAC error. Like your error notes, "429 Too Many Requests" error indicates you're exceeding the permitted BAPI calls per minute (100 in this case). If you reduce your calls to 100 per minute or adjust your approach based on the actual rate limit and your needs. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I guess one way would to i&lt;/SPAN&gt;&lt;SPAN&gt;nstead of retrieving all details for 10,&lt;/SPAN&gt;&lt;SPAN&gt;000 clients at once,&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;use paginated API calls or filter your requests to specific attributes if this is possible (you might need to look at the SDK for this, as last i was aware, unfortunately, as per the API documentation for DNA, there is no pagination mechanism provided, requiring manual incrementation of the offset parameter). You might want to look at these links&amp;nbsp;&lt;/SPAN&gt;by referring to: "offset = 500" if this will meet your use case,&amp;nbsp;&lt;SPAN&gt;and t&lt;/SPAN&gt;&lt;SPAN&gt;his will reduce data transfer and potential throttling or&amp;nbsp;timing constraint in your code to delay your loops, but the latter would increase the time it took to gather that data back and you already mentioned this is in the hours now (wow btw!)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.cisco.com/t5/automation-and-analytics/method-to-return-more-than-500-devices-in-api-get-quot-network/td-p/3437814" target="_blank" rel="noopener"&gt;https://community.cisco.com/t5/automation-and-analytics/method-to-return-more-than-500-devices-in-api-get-quot-network/td-p/3437814&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.cisco.com/t5/cisco-digital-network/dna-center-api-500-record-limit/td-p/4125116" target="_blank" rel="noopener"&gt;https://community.cisco.com/t5/cisco-digital-network/dna-center-api-500-record-limit/td-p/4125116&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/329543"&gt;@Gabriel Zapodeanu&lt;/a&gt;&amp;nbsp;is the master here on this subject &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 11:48:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5015450#M8709</guid>
      <dc:creator>bigevilbeard</dc:creator>
      <dc:date>2024-02-09T11:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5015465#M8710</link>
      <description>&lt;P&gt;Thank you for your reply &lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/352839"&gt;@bigevilbeard&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the version 2.3.5.5&lt;/P&gt;&lt;P&gt;I have used "offset" when retrieving network-device details from DNA center.&lt;/P&gt;&lt;P&gt;But at the moment i am trying to get the client details with mac address as the parameter.I am not sure if setting an "offset" would solve my issue .&amp;nbsp;&lt;BR /&gt;I am getting the client details using this API With mac-address from an excel file.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;"https://XXXXXXXXXXXXXXXXX//dna/intent/api/v1/client-detail?macAddress=xx:xx:xx:xx:xx:xx"&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Some of the similar issues:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.cisco.com/t5/controllers/what-is-the-limitation-for-frequency-to-using-dnac-api/td-p/3857189" target="_blank"&gt;https://community.cisco.com/t5/controllers/what-is-the-limitation-for-frequency-to-using-dnac-api/td-p/3857189&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.cisco.com/t5/cisco-digital-network-architecture-dna/dna-api-limit-ap-report-is-there-a-better-way/td-p/4182308" target="_blank"&gt;https://community.cisco.com/t5/cisco-digital-network-architecture-dna/dna-api-limit-ap-report-is-there-a-better-way/td-p/4182308&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 12:22:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5015465#M8710</guid>
      <dc:creator>beginnerciscouser</dc:creator>
      <dc:date>2024-02-09T12:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5016870#M8711</link>
      <description>&lt;P&gt;There is another option to collect the client details using the Client Details report being triggered via APIs: &lt;A href="https://github.com/cisco-en-programmability/dnacenter_reports_operations" target="_blank"&gt;https://github.com/cisco-en-programmability/dnacenter_reports_operations&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 19:46:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5016870#M8711</guid>
      <dc:creator>Gabriel Zapodeanu</dc:creator>
      <dc:date>2024-02-12T19:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5017650#M8712</link>
      <description>&lt;P&gt;Thank for the reply &lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/329543"&gt;@Gabriel Zapodeanu&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;It was helpful.&lt;/P&gt;&lt;P&gt;I was using client-details API to retrieve the&amp;nbsp;&lt;SPAN&gt;HostName, Linkspeed, Mac_address, IPV4,&amp;nbsp; connecteddevice, VLANID and port of the&lt;/SPAN&gt; client devices.&lt;/P&gt;&lt;P&gt;Using your script i am able to get the details except the port to which the client is connected.&lt;BR /&gt;Is there any way i can get the details of the port&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 14:16:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5017650#M8712</guid>
      <dc:creator>beginnerciscouser</dc:creator>
      <dc:date>2024-02-13T14:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5017892#M8713</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/1663740"&gt;@beginnerciscouser&lt;/a&gt; You welcome. &lt;BR /&gt;In my report, (Catalyst Center version 2.3.7.4) I have these params included:&lt;BR /&gt;"connectedDeviceName": "PDX-M",&lt;BR /&gt;"port": "GigabitEthernet1/0/33"&lt;BR /&gt;providing the access switch and switchport details &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 22:29:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5017892#M8713</guid>
      <dc:creator>Gabriel Zapodeanu</dc:creator>
      <dc:date>2024-02-13T22:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5018021#M8714</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I am using your dnacenter_create_report_download.py&lt;BR /&gt;The output of the function "get_report_file" is dictionary. These are the params i am receiving in one of the dictionary&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;{"hostName": "--", "username": "xxxxxxx", "macAddress": "xxxxxxxx, "ipv4": "xxxxxxxx", "ipv6": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "deviceType": "Wireless", "connectionStatus": "Connected", "averageHealthScore_min": "xx", "averageHealthScore_max": "10", "averageHealthScore_median": "7", "usage_sum": "0.0", "connectedDeviceName": "xxxxx", "frequency": "xx", "rssi_median": "xx", "snr_median": "xx", "site": "xxxx", "lastUpdated": "14 Feb, 06:50:00 AM", "apGroup": "xxx", "ssid": "xxxx", "vlan": "xxxx", "vnid": "--", "onboardingEventTime": "14 Feb, 06:40:14 AM", "assocDoneTimestamp": "14 Feb, 06:40:09 AM", "authDoneTimestamp": "14 Feb, 06:40:10 AM", "aaaServerIp": "xxxxx", "dhcpDoneTimestamp": "14 Feb, 06:40:14 AM", "maxDhcpDuration_max": "xxx", "dhcpServerIp": "xxxx", "linkSpeed": "--", "txRate_min": "0.0", "txRate_max": "0.0", "txRate_avg": "0.0", "rxRate_min": "0.0", "rxRate_max": "xxxx", "rxRate_avg": "xxxxx", "txBytes_sum": "0.0", "rxBytes_sum": "0.0", "dataRate_median": "xxx", "dot11Protocol": "xxxxx"},&lt;BR /&gt;From this dict, i am able to retrieve the HostName, Linkspeed, Mac_address, IPV4, connecteddevice, VLANID.&amp;nbsp; There is no information about the port&lt;/P&gt;&lt;P&gt;I am using the version 2.3.5.5 maybe upgrading to the version 2.3.7.4 which you are using might help me get the port details&lt;/P&gt;&lt;P&gt;Hoping to hear from you soon.&lt;BR /&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 12:31:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5018021#M8714</guid>
      <dc:creator>beginnerciscouser</dc:creator>
      <dc:date>2024-02-20T12:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5018069#M8715</link>
      <description>&lt;P&gt;I have updated my Cisco Catalyst Center to version 2.3.7.4.&lt;BR /&gt;Unfortunately, still no information about the port details. Could you please help me with this issue?&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/329543"&gt;@Gabriel Zapodeanu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 12:34:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5018069#M8715</guid>
      <dc:creator>beginnerciscouser</dc:creator>
      <dc:date>2024-02-20T12:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021519#M8716</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/352839"&gt;@bigevilbeard&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/329543"&gt;@Gabriel Zapodeanu&lt;/a&gt; I am facing exactly the same issue but with DNAC Terraform provider, so I have no control over how it sends API calls internally. Sorry to say, but the DNAC API quality is totally crappy in all aspects (bugs, performance, documentation, lifecycle).&lt;BR /&gt;&lt;BR /&gt;dnacenter_sda_fabric_site.hector: Still creating... [2m0s elapsed]&lt;BR /&gt;╷&lt;BR /&gt;│ Error: Failure when executing AddSiteInSdaFabric&lt;BR /&gt;│ &lt;BR /&gt;│ with dnacenter_sda_fabric_site.hector,&lt;BR /&gt;│ on sda_fabric.tf line 3, in resource "dnacenter_sda_fabric_site" "hector":&lt;BR /&gt;│ 3: resource "dnacenter_sda_fabric_site" "hector" {&lt;BR /&gt;│ &lt;BR /&gt;│ error with operation AddSiteInSdaFabric&lt;BR /&gt;│ {&lt;BR /&gt;│ "error" : "Rate Limit exceeded; BapiName: Add Site in SDA Fabric, RateLimit config details: RateLimitContext{rate=50, windowUnit='minute', windowDuration=1, maxConcurrentExecutionsPermitted=1}",&lt;BR /&gt;│ "bapiExtendedStatusCode" : "REJECTED_ABOVE_MAX_CONCURRENCY_LIMIT",&lt;BR /&gt;│ "bapiExtendedStatusDescription" : "For BAPI: Add Site in SDA Fabric, DNACP Runtime is at maximum allowed concurrent BAPI executions: 1"&lt;BR /&gt;│ }&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 21:34:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021519#M8716</guid>
      <dc:creator>rslaski</dc:creator>
      <dc:date>2024-02-20T21:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021535#M8717</link>
      <description>&lt;P&gt;Could you please check using the client detail or client enrichment details APIs if the port details are available? Is this info not available for any clients from the report? Are the details available from the UI?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 21:52:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021535#M8717</guid>
      <dc:creator>Gabriel Zapodeanu</dc:creator>
      <dc:date>2024-02-20T21:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021583#M8718</link>
      <description>&lt;P&gt;Terraform has a default parallelism of 10, which may cause issues for some workflows. You may try using a value of 1, and avoid hitting API concurrency limits: &lt;A href="https://developer.hashicorp.com/terraform/cli/commands/apply#parallelism-n" target="_blank"&gt;https://developer.hashicorp.com/terraform/cli/commands/apply#parallelism-n&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 00:15:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021583#M8718</guid>
      <dc:creator>Gabriel Zapodeanu</dc:creator>
      <dc:date>2024-02-21T00:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021839#M8719</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/329543"&gt;@Gabriel Zapodeanu&lt;/a&gt; I am aware of this and I am using 1 as parallelism parameter. Some resources can be created (ex. site), others (ex. SDA) fail with 429. There's something seriously broken in 2.3.7.4 or the provider.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 11:42:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021839#M8719</guid>
      <dc:creator>rslaski</dc:creator>
      <dc:date>2024-02-21T11:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021843#M8720</link>
      <description>&lt;P&gt;Yes, I have cross checked it using the client-details API&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;"https://xx.xx.xx.xx/dna/intent/api/v1/client-detail?macAddress=F8:E4:3B:BB:91:B8&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;and the port details are available.Also in the UI it is available&lt;BR /&gt;But with the report the port details are not available.&lt;BR /&gt;&lt;BR /&gt;Below you can find the sample output of the report&lt;BR /&gt;&lt;BR /&gt;{"hostName": "--", "username": "--", "macAddress": "FE:D7:41:E8:AD:09", "ipv4": "xx.xx.xx.xx", "ipv6": "fe80::fcd7:41ff:fee8:ad09", "deviceType": "Wired", "connectionStatus": "Connected", "averageHealthScore_min": "10", "averageHealthScore_max": "10", "averageHealthScore_median": "10", "usage_sum": "201287.41", "connectedDeviceName": "net166.net.xx.xx.xx", "frequency": "--", "rssi_median": "--", "snr_median": "--", "site": "Global/01\u00fclich/Geb\u00e4udebereich 16/16.60uvxy", "lastUpdated": "21 Feb, 11:48:08 AM", "apGroup": "--", "ssid": "--", "vlan": "18", "vnid": "--", "onboardingEventTime": "--", "assocDoneTimestamp": "--", "authDoneTimestamp": "--", "aaaServerIp": "--", "dhcpDoneTimestamp": "--", "maxDhcpDuration_max": "--", "dhcpServerIp": "--", "linkSpeed": "1000.0", "txRate_min": "34944.6", "txRate_max": "8.5218272048E8", "txRate_avg": "1.297082128E7", "rxRate_min": "81603.99", "rxRate_max": "2.8971478557E8", "rxRate_avg": "5665746.0", "txBytes_sum": "140099.59", "rxBytes_sum": "61187.82", "dataRate_median": "--", "dot11Protocol": "--"},{"hostName": "--", "username": "--", "macAddress": "xx.xx.xx.xx", "ipv4": "134.94.154.91", "ipv6": "fe80::fe34:97ff:fee4:54e1", "deviceType": "Wired", "connectionStatus": "Connected", "averageHealthScore_min": "10", "averageHealthScore_max": "10", "averageHealthScore_median": "10", "usage_sum": "12043.4", "connectedDeviceName": "net177.net.xxxx", "frequency": "--", "rssi_median": "--", "snr_median": "--", "site": "Global/01J\u00fclich/Geb\u00e4udebereich 15/15.21u", "lastUpdated": "21 Feb, 11:48:08 AM", "apGroup": "--", "ssid": "--", "vlan": "11", "vnid": "--", "onboardingEventTime": "--", "assocDoneTimestamp": "--", "authDoneTimestamp": "--", "aaaServerIp": "--", "dhcpDoneTimestamp": "--", "maxDhcpDuration_max": "--", "dhcpServerIp": "--", "linkSpeed": "1000.0", "txRate_min": "1758.17", "txRate_max": "4116977.81", "txRate_avg": "66717.65", "rxRate_min": "639802.74", "rxRate_max": "3685795.32", "rxRate_avg": "1048423.94", "txBytes_sum": "720.4", "rxBytes_sum": "11322.99", "dataRate_median": "--", "dot11Protocol": "--"}&lt;BR /&gt;&lt;BR /&gt;Kindly please let me know how can this be resolved.&lt;BR /&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 11:46:08 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021843#M8720</guid>
      <dc:creator>beginnerciscouser</dc:creator>
      <dc:date>2024-02-21T11:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021934#M8721</link>
      <description>&lt;P&gt;If you are using the TF provider, i would open an issue on the GitHub repo for the maintainers of this.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 13:48:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5021934#M8721</guid>
      <dc:creator>bigevilbeard</dc:creator>
      <dc:date>2024-02-21T13:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5022271#M8722</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/285182"&gt;@rslaski&lt;/a&gt; The Terraform provider does not support Catalyst Center 2.3.7.4. The latest supported version is 2.3.5.x. We are planning for provider support for a future 2.3.7.x GA version.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 22:11:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5022271#M8722</guid>
      <dc:creator>Gabriel Zapodeanu</dc:creator>
      <dc:date>2024-02-21T22:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5022273#M8723</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/1663740"&gt;@beginnerciscouser&lt;/a&gt; I would suggest to open a TAC case, if you have access, ask for them to look into this. It is hard to troubleshoot here why the report does not include information Catalyst Center has.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 22:16:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5022273#M8723</guid>
      <dc:creator>Gabriel Zapodeanu</dc:creator>
      <dc:date>2024-02-21T22:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Rate Limit exceeded -DNA center API</title>
      <link>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5022553#M8724</link>
      <description>&lt;P&gt;Okay. Then I shall do that.&lt;BR /&gt;Thanks for the support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 08:46:08 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/rate-limit-exceeded-dna-center-api/m-p/5022553#M8724</guid>
      <dc:creator>beginnerciscouser</dc:creator>
      <dc:date>2024-02-22T08:46:08Z</dc:date>
    </item>
  </channel>
</rss>

