Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

We Value Your Feedback!
Could you please spare a few minutes to share your thoughts on Cloud Connected vs On-Premise Services. Your feedback can help us shape the future of services.
Learn more about the survey or Click here to Launch the survey
Schneider Electric Services Innovation Team!

Inquiry regarding error code 429 when requesting DCE AP

EcoStruxure IT forum

Schneider Electric support forum about installation and configuration for DCIM including EcoStruxure IT Expert, IT Advisor, Data Center Expert, and NetBotz

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • EcoStruxure IT
  • EcoStruxure IT forum
  • Inquiry regarding error code 429 when requesting DCE AP
Options
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
Cory_McDonald
Admiral Cory_McDonald Admiral
124
Jef
Admiral Jef Admiral
110
gsterling
Captain gsterling Captain
71
APC_Steve
Captain APC_Steve Captain
62
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to EcoStruxure IT forum
뇽박
Crewman 뇽박
Crewman

Posted: ‎2025-03-31 10:28 PM

0 Likes
7
568
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-03-31 10:28 PM

Inquiry regarding error code 429 when requesting DCE AP

I am trying to receive 'power' data using the API provided by DCE, and I used Python and proceeded in the following order.

1) Collect access tokens

2) Check all devices using '/v1/devices'

3) Utilize 'isxcGuid' and '/v1/sensors/[guid]' found in devices to call all APIs for each guid and look up the Total_power(kw) value.

 

If you search in the above order, most values ​​will return an error code of 429, making the search impossible. (Step 3 requires approximately 3,000 API calls)

 

I would like to ask if there is a separate guide on how to resolve the 429 error code.

In addition, I would appreciate it if you could tell me how many APIs can be collected at once.

 

When I tried to access it in a different way because error code 429 occurred, I made a request to '/v1/sensors/type/{type}' with type as NUMBER_POWER, but infinite loading occurred because data was not collected, so the query could not be performed.

Labels
  • Labels:
  • Data Center Expert
  • Tags:
  • english
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic
Replies 7
Cory_McDonald
Admiral Cory_McDonald Admiral
Admiral

Posted: ‎2025-04-01 07:06 AM . Last Modified: ‎2025-04-01 07:10 AM

2 Likes
6
539
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-04-01 07:06 AM . Last Modified: ‎2025-04-01 07:10 AM

Hello @뇽박,

 

The 429 error is due to reaching the rate limit of the API. I recommend making sure you are on the latest version of DCE (8.3.0 as of this response).

 

I would recommend trying to perform your task in the following way:


1) Collect access tokens

2) Check all devices using '/v1/devices' (keep in storage in program for use with step 3)

3) Use the '/v1/sensors/type/{type}' call with a type of NUMBER_POWER

   - You mentioned that this gave you infinite loading, if it is, please try using the web interface of DCE (https://DCE_IP/isxg/rest) to test this call first.  If it gives you issues there, you may need to contact your local support for further investigation into the issue of the Rest call not working).

4) In your program, filter the results to get just the sensors that you are looking for.  The "podId" in the response body for each sensor should tie to a "isxcGuid" of the device the sensor is associated with.

 

This should limit your program to only needing to do 2 calls instead of approximately 3001 as long as you can get the type call to work correctly.

 

Kind Regards,

Cory

 

Reply

Link copied. Please paste this link to share this article on your social media post.

뇽박
Crewman 뇽박
Crewman

Posted: ‎2025-04-01 04:34 PM

In response to Cory_McDonald
0 Likes
0
525
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-04-01 04:34 PM

Thanks for your reply!

 

As I mentioned at the end of my question, 3) using type as NUMBER_POWER in '/v1/sensors/type/{type}' causes infinite loading and data retrieval is not possible. I would appreciate it if you could tell me the solution in this case.

Reply

Link copied. Please paste this link to share this article on your social media post.

뇽박
Crewman 뇽박
Crewman

Posted: ‎2025-04-02 05:57 PM . Last Modified: ‎2025-04-02 11:31 PM

In response to Cory_McDonald
0 Likes
4
494
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-04-02 05:57 PM . Last Modified: ‎2025-04-02 11:31 PM

Thanks for your reply!

 

When I try to access the DCE web interface (https://DCE IP/isvg/rest) mentioned in the 3rd one, it loads infinitely and returns a 503 error code.
If you have any trouble, you have guided me through the following method. Could you please provide a detailed guide on how to do this?
"If it gives you issues there, you may need to contact your local support for further investigation into the issue of the Rest call not working."

 

Or is there another way to do this?

Reply

Link copied. Please paste this link to share this article on your social media post.

Cory_McDonald
Admiral Cory_McDonald Admiral
Admiral

Posted: ‎2025-04-03 04:32 AM

In response to 뇽박
0 Likes
3
471
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-04-03 04:32 AM

Hello @뇽박,


In regards to the DCE web interface rest page not loading, please ensure that you are using HTTPS and that the DCEIP is being replaced by the IP address of your DCE Server.  Should look something like this:  https://10.10.10.10/isxg/rest

In your response you had isvg instead of isxg as well, which may cause the issue as that page does not exist.

 

As the Rest API is still being built out, you could fall back and use the SoapAPI that has a specific type call that may suit your needs: 

 

Once you have access to DCE's rest API documentation page at the above URL, you should be able to run the command and see if the call isn't work because of DCE or something within your code.

If your program needs to be urgently created while you are working with support, you can fall back to use the SoapAPI calls.  The call works differently than the RestAPI calls as the RestAPIs are still being built out as changes occur with the web interface:

Cory_McDonald_0-1743679904561.png

 

Kind Regards,

Cory

Reply

Link copied. Please paste this link to share this article on your social media post.

뇽박
Crewman 뇽박
Crewman

Posted: ‎2025-04-09 05:01 PM

In response to Cory_McDonald
0 Likes
0
434
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-04-09 05:01 PM

I accessed it by entering the format 'https://10.10.10.10/isxg/rest'. When I searched by entering 'NUMBER_POWER' as the type, infinite loading occurred and then the result of the code below was searched. Please check!

_0-1744242726083.png

 

Also, you told me to try using SoapAPI, so I would appreciate it if you could tell me how to access Soap and a user guide.

 

Reply

Link copied. Please paste this link to share this article on your social media post.

뇽박
Crewman 뇽박
Crewman

Posted: ‎2025-04-13 05:45 PM

In response to Cory_McDonald
0 Likes
1
406
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-04-13 05:45 PM

Thank you for answering my question. I asked a follow-up question on April 10th, and I know you are busy, but please reply!

Reply

Link copied. Please paste this link to share this article on your social media post.

Cory_McDonald
Admiral Cory_McDonald Admiral
Admiral

Posted: ‎2025-04-14 05:03 AM

In response to 뇽박
0 Likes
0
393
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-04-14 05:03 AM

Hello @뇽박,

 

The calls works fine for me, but I only have a small solution.  I would recommend working with technical support on why the call is not working within your setup.

 

Kind Regards,

Cory

Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of