Schneider Electric Exchange · Example Payload

Ecostruxure It Get Devices Example

Retrieve a list of monitored devices from the EcoStruxure IT Expert API.

Building AutomationCommerce APIsEcoStruxureEnergy ManagementIndustrial IoTSchneider Electric

Ecostruxure It Get Devices Example is an example object payload from Schneider Electric Exchange, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionoperationbaseUrlauthenticationrequestresponse

Example Payload

ecostruxure-it-get-devices-example.json Raw ↑
{
  "title": "Get Devices from EcoStruxure IT Expert",
  "description": "Retrieve a list of monitored devices from the EcoStruxure IT Expert API.",
  "operation": "GET /devices",
  "baseUrl": "https://api.ecostruxureit.com/rest",
  "authentication": {
    "type": "subscription_key",
    "header": "Ocp-Apim-Subscription-Key",
    "value": "YOUR_SUBSCRIPTION_KEY"
  },
  "request": {
    "method": "GET",
    "url": "https://api.ecostruxureit.com/rest/v1/devices",
    "headers": {
      "Ocp-Apim-Subscription-Key": "YOUR_SUBSCRIPTION_KEY",
      "Accept": "application/json"
    },
    "queryParameters": {
      "locationId": "loc_001",
      "limit": 20,
      "offset": 0
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "data": [
        {
          "id": "device_001",
          "name": "UPS-Rack-A1",
          "type": "UPS",
          "status": "normal",
          "location": { "id": "loc_001", "name": "Server Room A" },
          "ipAddress": "192.168.1.100",
          "modelNumber": "APC Smart-UPS 3000",
          "serialNumber": "AS2010120456",
          "lastUpdated": "2026-05-02T14:00:00Z"
        },
        {
          "id": "device_002",
          "name": "PDU-Rack-A1",
          "type": "PDU",
          "status": "warning",
          "location": { "id": "loc_001", "name": "Server Room A" },
          "ipAddress": "192.168.1.101",
          "modelNumber": "APC AP8853",
          "serialNumber": "AS2009080123",
          "lastUpdated": "2026-05-02T14:01:00Z"
        }
      ],
      "pagination": {
        "total": 42,
        "limit": 20,
        "offset": 0
      }
    }
  }
}