Ask our Experts
Didn't find what you are looking for? Ask our experts!
New Community Ranking System
Our Community ranking system has recently been updated. You may notice changes in user rankings and receive system messages or notifications. If you have questions about how the new ranking works, please refer to the announcement post for more details (click here).
Schneider Electric support forum about installation and configuration for DCIM including EcoStruxure IT Expert, IT Advisor, Data Center Expert, and NetBotz
Search in
Please select a country to continue with beta search.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2026-05-08 05:27 AM
Hello everyone,
I am currently working with EcoStruxure IT Advisor and I am looking to retrieve data from the system using read‑only APIs (no write or configuration changes).
My use case is strictly data consumption, such as:
Assets / devices
Rooms and racks
Capacity and power data
Measurements and inventory information
I have searched through the public Schneider Electric documentation and portals, but I haven’t been able to find clear information regarding:
Where the IT Advisor API documentation is located
Whether official REST read‑only APIs are available for IT Advisor (on‑prem or cloud)
If API access (even read‑only) requires additional licensing, Schneider enablement, or specific user roles
Or if there is another recommended method to integrate IT Advisor with external systems in a read‑only manner
Could you please advise on:
The official documentation or knowledge base for IT Advisor APIs, or
The correct process to request or enable read‑only API access, or
The recommended alternative for securely exporting or integrating IT Advisor data with external systems?
Any technical guidance or references would be greatly appreciated.
Thank you very much for your support.
Best regards,
Marco
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2026-05-08 10:47 AM
Hello @MarcoPer1985,
EcoStruxure IT Advisor API documentation is found within the server itself: https://community.se.com/t5/For-DCIM-developers/IT-Advisor-REST-API/ta-p/447005
The RestAPI is used for the IT Advisor web interface as well, so the permissions sets will follow the user that is logged in, whether that is the web client, desktop client, or the Rest API.
Kind Regards,
Cory
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2026-05-08 10:50 AM
HI @MarcoPer1985,
You can find the IT Advisor REST API documentation at this URL:
https://<server IP>/api/current/docs/index.html
Sorry, I can't answer any of your other questions. I'll try to find someone who can give you more insight.
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2026-05-11 03:29 AM
Hello @MarcoPer1985
I'll add some comments in addition to the comments you've received already.
As mentioned already, ITA (both on-premise and hosted/SaaS) offers rest based apis. The endpoints themselves are documented view the api page itself on the ITA server when you access this URL: https://<server IP>/api/current/docs/index.html
(the URL will ask you for ITA user credentials
Access to the API's is based on the ITA user used to access / authenticate. So if you authenticate with an administrator level user, the user can make administrator level api calls. If you create a readonly ITA user, then that user will have readonly access. Note, api access is also limited to the rooms/equipment the user is granted.
When connected and authenticated to the api page you will see information for all of the endpoints. I pasted a portion of the assets endpoints below.
You can expand each endpoint call to see the details, and use the UI to test them to see results by clicking the "Try it out" button. Please note when "trying" the api calls you are making actual api calls to your ITA server so if you try deleting assets, you're actually deleting assets.
You asked whether the below data is present in the API's:
* Assets / devices -- yes, in the assets endpoints I pasted above
* Rooms and racks -- yes, also in the assets endpoints I pasted above
* Capacity and power data -- yes, if you are looking for current and historical capacity data, look for the KPI endpoints
* Measurements and inventory information -- This information may be more limited as of now, depending on what data you're looking for. Can you share an example? In most cases measurement data itself comes from another system like Data Center Expert or IT Expert, and the raw data would come from those systems via API calls. But if you're looking for something else, it may be present in ITA's api's.
I'll provide a few comments below to guide you regarding collecting room and inventory data via the API's.
* Asset data in ITA is stored with uuid's as the asset unique id's. All assets including rooms and room assets have uuid's.
* The "GET /assets" endpoint I pasted above is usually the first/initial call made to an ITA server. Based on the ITA user used for authentication, this command will return all the rooms and location information the user has access to. I recommend you use the "recursive=true" parameter on this command to get the parent location and all its children room and locations.
* Once you have your room and locations list, you can programmatically extract each room uuid then use the "GET /asset/{asset-id}" call using the room uuid as the "asset-id" and use the "children" parameter to get all of the room floor mounted assets (including racks).
* Then you can loop again for all the racks in the room to make the same GET by asset id call using the rack uuid's as the asset-id with the children parameter to fetch all the rack content.
There are other parameters you'll see defined on some of the api endpoint pages which allow you to fetch specific data when fetching inventory, like for example if you want tags or custom properties returned in the output.
Hope this helps.
Regards
Greg Sterling
Link copied. Please paste this link to share this article on your social media post.
You’ve reached the end of your document
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.